From 9a96f928ee19565d2bd2b143a97629e990b27c5c Mon Sep 17 00:00:00 2001 From: Ward Fisher Date: Mon, 21 Oct 2024 16:39:11 -0600 Subject: [PATCH] Preparing for v4.6.2-rc1 release. --- CMakeLists.txt | 2 +- RELEASE_NOTES.md | 16 ++++++++++++++++ configure.ac | 2 +- docs/Doxyfile.developer | 2 +- fortran/Makefile.am | 2 +- 5 files changed, 20 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b0770dd5..619bb400 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,7 +24,7 @@ set(PACKAGE "${NC4F_CTEST_PROJECT_NAME}" CACHE STRING "") SET(NC4F_VERSION_MAJOR 4) SET(NC4F_VERSION_MINOR 6) -SET(NC4F_VERSION_PATCH 2) +SET(NC4F_VERSION_PATCH 3) SET(NC4F_VERSION_NOTE "-development") SET(NC4F_VERSION ${NC4F_VERSION_MAJOR}.${NC4F_VERSION_MINOR}.${NC4F_VERSION_PATCH}${NC4F_VERSION_NOTE}) SET(VERSION ${NC4F_VERSION}) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 2392c09f..6ead8ece 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -6,6 +6,22 @@ Release Notes {#nf_release_notes} This file contains a high-level description of this package's evolution. Entries are in reverse chronological order (most recent first). +## 4.6.2 - TBD + +### 4.6.2-rc1 - October 21, 2024 + +### Requirements + +* netCDF-C: 4.9.2+ + + Note: to enable `libzstd` support, you need to satisfy the following requirements. + + 1. `libnetcdf.so` installed with `libzstd` support. + 2. The environmental variable `HDF5_LIBRARY_PATH` needs to be specified to the same location used when installing `libnetcdf`. This can be determined after-the-fact using `nc-config --plugindir`. + +### What's Changed + + ## 4.6.1 - May 19, 2023 ### Requirements diff --git a/configure.ac b/configure.ac index bc26c410..832e211f 100644 --- a/configure.ac +++ b/configure.ac @@ -10,7 +10,7 @@ AC_PREREQ([2.59]) # Initialize with name, version, and support email address. -AC_INIT([netCDF-Fortran], [4.6.2-development], [support-netcdf@unidata.ucar.edu]) +AC_INIT([netCDF-Fortran], [4.6.3-development], [support-netcdf@unidata.ucar.edu]) # Create the VERSION file, which contains the package version from diff --git a/docs/Doxyfile.developer b/docs/Doxyfile.developer index 54e3dca0..64179de6 100644 --- a/docs/Doxyfile.developer +++ b/docs/Doxyfile.developer @@ -39,7 +39,7 @@ PROJECT_NAME = netcdf-fortran # control system is used. -PROJECT_NUMBER = 4.6.2-Development +PROJECT_NUMBER = 4.6.3-Development # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/fortran/Makefile.am b/fortran/Makefile.am index f90a73d8..642b703b 100644 --- a/fortran/Makefile.am +++ b/fortran/Makefile.am @@ -14,7 +14,7 @@ lib_LTLIBRARIES = libnetcdff.la # These linker flags specify libtool version info. # See http://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning # for information regarding incrementing `-version-info`. -libnetcdff_la_LDFLAGS = -version-info 9:0:2 +libnetcdff_la_LDFLAGS = -version-info 9:1:2 # These F90 codes are used for either netCDF classic or netCDF-4 F90 # API.