Skip to content

Commit 0cbc4c5

Browse files
authored
Merge pull request #462 from Unidata/v4.6.2-wellspring.wif
Merge changes back upstream into development branch.
2 parents ae40b43 + cd7888a commit 0cbc4c5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+9571
-946
lines changed

CMakeLists.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ set(PACKAGE "${NC4F_CTEST_PROJECT_NAME}" CACHE STRING "")
2424
SET(NC4F_VERSION_MAJOR 4)
2525
SET(NC4F_VERSION_MINOR 6)
2626

27-
SET(NC4F_VERSION_PATCH 2)
27+
SET(NC4F_VERSION_PATCH 3)
2828
SET(NC4F_VERSION_NOTE "-development")
2929
SET(NC4F_VERSION ${NC4F_VERSION_MAJOR}.${NC4F_VERSION_MINOR}.${NC4F_VERSION_PATCH}${NC4F_VERSION_NOTE})
3030
SET(VERSION ${NC4F_VERSION})
@@ -65,6 +65,8 @@ ENDIF()
6565
# End BUILDNAME customization.
6666
###
6767

68+
set(abs_top_builddir "${CMAKE_CURRENT_BINARY_DIR}")
69+
set(abs_top_srcdir "${CMAKE_CURRENT_SOURCE_DIR}")
6870

6971
# Determine if DOXYGEN and DOT are available. These will be used
7072
# when building the documentation.

Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ check_nc_config:
3636
# These files get added to the distribution.
3737
EXTRA_DIST = README.md RELEASE_NOTES.md netcdf-fortran.pc.in \
3838
F03Interfaces_LICENSE CMakeLists.txt COPYRIGHT nf-config.in \
39-
config.h.cmake.in CTestConfig.cmake.in nf-config.cmake.in \
39+
config.h.cmake.in CTestConfig.cmake.in \
4040
libnetcdff.settings.in netCDF-FortranConfig.cmake.in
4141

4242
# Remove these generated files, for a distclean.

RELEASE_NOTES.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,36 @@ Release Notes {#nf_release_notes}
66
This file contains a high-level description of this package's evolution.
77
Entries are in reverse chronological order (most recent first).
88

9+
## 4.6.2 - March 26, 2025
10+
11+
### Requirements
12+
13+
* netCDF-C: 4.9.2+
14+
15+
Note: to enable `libzstd` support, you need to satisfy the following requirements.
16+
17+
1. `libnetcdf.so` installed with `libzstd` support.
18+
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`.
19+
20+
### What's Changed
21+
22+
* Fixed an issue in `ftst` tests which was the result of an incompatibility with netCDF-C `v4.9.3`
23+
24+
25+
### 4.6.2-rc1 - October 21, 2024
26+
27+
### Requirements
28+
29+
* netCDF-C: 4.9.2+
30+
31+
Note: to enable `libzstd` support, you need to satisfy the following requirements.
32+
33+
1. `libnetcdf.so` installed with `libzstd` support.
34+
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`.
35+
36+
### What's Changed
37+
38+
939
## 4.6.1 - May 19, 2023
1040

1141
### Requirements

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ AC_PREREQ([2.59])
1010

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

13-
AC_INIT([netCDF-Fortran], [4.6.2-development], [support-netcdf@unidata.ucar.edu])
13+
AC_INIT([netCDF-Fortran], [4.6.3-development], [support-netcdf@unidata.ucar.edu])
1414

1515

1616
# Create the VERSION file, which contains the package version from

docs/Doxyfile.developer

Lines changed: 921 additions & 455 deletions
Large diffs are not rendered by default.

docs/Doxyfile.in

Lines changed: 1035 additions & 474 deletions
Large diffs are not rendered by default.

docs/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Doxyfile.in netcdf-f77.md netcdf-f90-sec1-usage.md \
5353
netcdf-f90-sec3-groups.md netcdf-f90-sec5-user_defined_types.md \
5454
netcdf-f90-sec7-attributes.md netcdf-f90.md \
5555
netcdf-f90-sec2-datasets.md netcdf-f90-sec4-dimensions.md \
56-
netcdf-f90-sec6-variables.md
56+
netcdf-f90-sec6-variables.md doxygen-awesome-css header.html footer.html
5757

5858
CLEANFILES = doxyfile.stamp
5959

0 commit comments

Comments
 (0)