Skip to content

Commit 6555488

Browse files
authored
Merge pull request #1499 from Unidata/v4.7.2-wellspring.wif
V4.7.2 wellspring.wif
2 parents 5c7a2c8 + d20df55 commit 6555488

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ set(PACKAGE "netCDF" CACHE STRING "")
2626

2727
SET(NC_VERSION_MAJOR 4)
2828
SET(NC_VERSION_MINOR 7)
29-
SET(NC_VERSION_PATCH 2)
29+
SET(NC_VERSION_PATCH 3)
3030
SET(NC_VERSION_NOTE "-development")
3131
SET(netCDF_VERSION ${NC_VERSION_MAJOR}.${NC_VERSION_MINOR}.${NC_VERSION_PATCH}${NC_VERSION_NOTE})
3232
SET(VERSION ${netCDF_VERSION})

RELEASE_NOTES.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,11 @@ Release Notes {#RELEASE_NOTES}
55

66
This file contains a high-level description of this package's evolution. Releases are in reverse chronological order (most recent first). Note that, as of netcdf 4.2, the `netcdf-c++` and `netcdf-fortran` libraries have been separated into their own libraries.
77

8-
## 4.7.2 - TBD
8+
## 4.7.3 - TBD
99

10+
## 4.7.2 - October 22, 2019
11+
12+
* [Bug Fix][Enhancement] Various bug fixes and enhancements.
1013
* [Bug Fix][Enhancement] Corrected an issue where protected memory was being written to with some pointer slight-of-hand. This has been in the code for a while, but appears to be caught by the compiler on OSX, under circumstances yet to be completely nailed down. See [GitHub #1486](https://github.com/Unidata/netcdf-c/issues/1486) for more information.
1114
* [Enhancement] [Parallel IO] Added support for parallel functions in MSVC. See [Github #1492](https://github.com/Unidata/netcdf-c/pull/1492) for more information.
1215
* [Enhancement] Added a function for changing the ncid of an open file. This function should only be used if you know what you are doing, and is meant to be used primarily with PIO integration. See [GitHub #1483](https://github.com/Unidata/netcdf-c/pull/1483) and [GitHub #1487](https://github.com/Unidata/netcdf-c/pull/1487) for more information.

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
AC_PREREQ([2.59])
1111

1212
# Initialize with name, version, and support email address.
13-
AC_INIT([netCDF], [4.7.2-development], [support-netcdf@unidata.ucar.edu], [netcdf-c])
13+
AC_INIT([netCDF], [4.7.3-development], [support-netcdf@unidata.ucar.edu], [netcdf-c])
1414

1515
##
1616
# Prefer an empty CFLAGS variable instead of the default -g -O2.
@@ -21,7 +21,7 @@ AC_INIT([netCDF], [4.7.2-development], [support-netcdf@unidata.ucar.edu], [netcd
2121

2222
AC_SUBST([NC_VERSION_MAJOR]) NC_VERSION_MAJOR=4
2323
AC_SUBST([NC_VERSION_MINOR]) NC_VERSION_MINOR=7
24-
AC_SUBST([NC_VERSION_PATCH]) NC_VERSION_PATCH=2
24+
AC_SUBST([NC_VERSION_PATCH]) NC_VERSION_PATCH=3
2525
AC_SUBST([NC_VERSION_NOTE]) NC_VERSION_NOTE="-development"
2626

2727
#####

docs/Doxyfile.developer

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = netCDF-C
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 4.7.2-development
41+
PROJECT_NUMBER = 4.7.3-development
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

liblib/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ lib_LTLIBRARIES = libnetcdf.la
1818
# for information regarding incrementing `-version-info`.
1919
##
2020

21-
libnetcdf_la_LDFLAGS = -version-info 16:0:1
21+
libnetcdf_la_LDFLAGS = -version-info 17:0:2
2222

2323
libnetcdf_la_CPPFLAGS = ${AM_CPPFLAGS}
2424
libnetcdf_la_LIBADD =

0 commit comments

Comments
 (0)