New version 1.9.6
authorRonnie Sahlberg <ronniesahlberg@gmail.com>
Tue, 25 Nov 2014 14:47:55 +0000 (06:47 -0800)
committerRonnie Sahlberg <ronniesahlberg@gmail.com>
Tue, 25 Nov 2014 14:47:55 +0000 (06:47 -0800)
 - Add O_TRUNC support for nfs_create
 - Handle OOM during create
 - Return more stats fields as part of readdir since we get these for "free"
   when we use READDIRPLUS
 - Follow symlinks during path resolution
 - Add lchown, lstat and lutimes
 - Replace all [u_]quad types with [u]int types in our RPC layer
 - Solaris build fixes

Signed-off-by: Ronnie Sahlberg <ronniesahlberg@gmail.com>
configure.ac
lib/Makefile.am
packaging/RPM/libnfs.spec.in

index b790b0677a805f53cf3b2bce1d16f193d4d93863..2e64295be8b37d782639bc579ac25a5dbc9f6eaa 100644 (file)
@@ -1,5 +1,5 @@
 AC_PREREQ(2.50)
 AC_PREREQ(2.50)
-AC_INIT([libnfs], [1.9.5], [ronniesahlberg@gmail.com])
+AC_INIT([libnfs], [1.9.6], [ronniesahlberg@gmail.com])
 AC_CONFIG_HEADERS([config.h])
 AM_INIT_AUTOMAKE([foreign])
 AC_CANONICAL_HOST
 AC_CONFIG_HEADERS([config.h])
 AM_INIT_AUTOMAKE([foreign])
 AC_CANONICAL_HOST
index 2f12325d6bb22bf51a2f4da599bace7c665f5899..bbc29d25e3c039847802e3a05f3e2eccea0874d8 100644 (file)
@@ -18,9 +18,9 @@ libnfs_la_SOURCES = \
        pdu.c \
        socket.c
 
        pdu.c \
        socket.c
 
-SOCURRENT=6
+SOCURRENT=7
 SOREVISION=0
 SOREVISION=0
-SOAGE=2
+SOAGE=3
 libnfs_la_LDFLAGS = -version-info $(SOCURRENT):$(SOREVISION):$(SOAGE)
 libnfs_la_LIBADD = \
        ../mount/libmount.la \
 libnfs_la_LDFLAGS = -version-info $(SOCURRENT):$(SOREVISION):$(SOAGE)
 libnfs_la_LIBADD = \
        ../mount/libmount.la \
index 0535743e48d7aabacaa75b83784f08b1747d9101..35e3825df4620c94351b7ef91e9fdfb9397d4dfd 100644 (file)
@@ -108,6 +108,15 @@ Utility programs for LibNFS
 %{_mandir}/man1/nfs-ls.1.gz
 
 %changelog
 %{_mandir}/man1/nfs-ls.1.gz
 
 %changelog
+* Tue Nov 25 2014 : Version 1.9.6
+ - Add O_TRUNC support for nfs_create
+ - Handle OOM during create
+ - Return more stats fields as part of readdir since we get these for "free"
+   when we use READDIRPLUS
+ - Follow symlinks during path resolution
+ - Add lchown, lstat and lutimes
+ - Replace all [u_]quad types with [u]int types in our RPC layer
+ - Solaris build fixes
 * Sat Jul 19 2014 : Version 1.9.5
  - Remove old ONC-RPC symbols
 * Wed Mar 19 2014 : Version 1.9.3
 * Sat Jul 19 2014 : Version 1.9.5
  - Remove old ONC-RPC symbols
 * Wed Mar 19 2014 : Version 1.9.3