Skip to content

Commit

Permalink
Preparing for v4.6.2-rc1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
WardF committed Oct 21, 2024
1 parent b6e8d58 commit 9a96f92
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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})
Expand Down
16 changes: 16 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ AC_PREREQ([2.59])

# Initialize with name, version, and support email address.

AC_INIT([netCDF-Fortran], [4.6.2-development], [[email protected]])
AC_INIT([netCDF-Fortran], [4.6.3-development], [[email protected]])


# Create the VERSION file, which contains the package version from
Expand Down
2 changes: 1 addition & 1 deletion docs/Doxyfile.developer
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion fortran/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 9a96f92

Please sign in to comment.