New version 5.0.0

Multithread support for Linux and Windows
Fix NFS4 behavior of chmod/chown/utimes
Add marshalling / unmarshalling of various NFSv4.1 structures (but not 4.1 support)
PS3 support
PS2 EE support
Support escaped characters in the URL
Fix MINGW build

Signed-off-by: Ronnie Sahlberg <ronniesahlberg@gmail.com>
master
Ronnie Sahlberg 2022-01-28 10:50:38 +10:00
parent 29b4cea00f
commit a48f019e05
6 changed files with 22 additions and 3 deletions

View File

@ -1,3 +1,13 @@
Changes since 4.0.0
Multithread support for Linux and Windows
Fix NFS4 behavior of chmod/chown/utimes
Add marshalling / unmarshalling of various NFSv4.1 structures (but not 4.1 support)
PS3 support
PS2 EE support
Support escaped characters in the URL
Fix MINGW build
Changes since 3.0.0
Fix the versioning in makerpms.sh

View File

@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.2)
project(libnfs
LANGUAGES C
VERSION 4.0.0)
VERSION 5.0.0)
set(SOVERSION 11.0.0 CACHE STRING "" FORCE)

View File

@ -1,5 +1,5 @@
AC_PREREQ(2.50)
AC_INIT([libnfs], [4.0.0], [ronniesahlberg@gmail.com])
AC_INIT([libnfs], [5.0.0], [ronniesahlberg@gmail.com])
AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE([-Wall foreign subdir-objects])
AC_CANONICAL_HOST

View File

@ -43,6 +43,7 @@ extern "C" {
#define LIBNFS_FEATURE_PAGECACHE
#define LIBNFS_FEATURE_DEBUG
#define LIBNFS_FEATURE_UMOUNT
#define LIBNFS_FEATURE_MULTITHREADING
#define NFS_BLKSIZE 4096
#define NFS_PAGECACHE_DEFAULT_TTL 5

View File

@ -26,7 +26,7 @@ libnfs_la_SOURCES = \
socket.c \
../win32/win32_compat.c
SOCURRENT=13
SOCURRENT=14
SOREVISION=0
SOAGE=0
libnfs_la_LDFLAGS = -version-info $(SOCURRENT):$(SOREVISION):$(SOAGE)

View File

@ -113,6 +113,14 @@ Utility programs for LibNFS
%{_mandir}/man1/nfs-ls.1.gz
%changelog
* Fri Jan 28 2022 : Version 5.0.0
- Multithread support for Linux and Windows
- Fix NFS4 behavior of chmod/chown/utimes
- Add marshalling / unmarshalling of various NFSv4.1 structures (but not 4.1 support)
- PS3 support
- PS2 EE support
- Support escaped characters in the URL
- Fix MINGW build
* Wed Feb 13 2019 : Version 4.0.0
- Fix the versioning in makerpms.sh
- Fix some compile issues in the test programs.