From 976a9ae7dc3d7fcbd10cd2db4cd65d4a2c092030 Mon Sep 17 00:00:00 2001 From: Ronnie Sahlberg Date: Wed, 11 Dec 2024 19:42:11 +1000 Subject: [PATCH] New version 6.0.0 KRB5 / TLS support Zero-Copy READ support. New API and changed function signatures. Can be checked via LIBNFS_API_V2 Signed-off-by: Ronnie Sahlberg --- CMakeLists.txt | 4 ++-- configure.ac | 2 +- lib/Makefile.am | 2 +- packaging/RPM/libnfs.spec.in | 5 +++++ 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6b9886c7..ead06795 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,9 +2,9 @@ cmake_minimum_required(VERSION 3.16) project(libnfs LANGUAGES C - VERSION 6.0.0) + VERSION 16.0.0) -set(SOVERSION 12.0.0 CACHE STRING "" FORCE) +set(SOVERSION 16.0.0 CACHE STRING "" FORCE) set(INSTALL_BIN_DIR "${CMAKE_INSTALL_PREFIX}/bin" CACHE PATH "Installation directory for binaries") set(INSTALL_LIB_DIR "${CMAKE_INSTALL_PREFIX}/lib" CACHE PATH "Installation directory for libraries") diff --git a/configure.ac b/configure.ac index 68a2cbc3..cd1054fb 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.69]) -AC_INIT([libnfs],[6.0.0],[ronniesahlberg@gmail.com]) +AC_INIT([libnfs],[16.0.0],[ronniesahlberg@gmail.com]) AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE([-Wall foreign subdir-objects]) AC_CANONICAL_HOST diff --git a/lib/Makefile.am b/lib/Makefile.am index c5af13c7..c8425216 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -27,7 +27,7 @@ libnfs_la_SOURCES = \ socket.c \ ../win32/win32_compat.c -SOCURRENT=15 +SOCURRENT=16 SOREVISION=0 SOAGE=0 libnfs_la_LDFLAGS = -version-info $(SOCURRENT):$(SOREVISION):$(SOAGE) \ diff --git a/packaging/RPM/libnfs.spec.in b/packaging/RPM/libnfs.spec.in index 5822ad6b..1840a199 100644 --- a/packaging/RPM/libnfs.spec.in +++ b/packaging/RPM/libnfs.spec.in @@ -114,6 +114,11 @@ Utility programs for LibNFS %{_mandir}/man1/nfs-ls.1.gz %changelog +* Wed Dec 11 2024 : Version 6.0.0 +- KRB5/i/p support +- TLS support +- READ3/4 Zero-Copy +- New API that breaks some signatures. Check LIBNFS_API_V2 * sun Feb 11 2024 : Version 5.0.3 - drop *BSD support from github workflows - workflow: indicate that the linux workflow also runs the tests