Skip to content

Commit 751ff3d

Browse files
Merge pull request #1614 from NCAR/ejh_prepare
changed version numbers for 2.5.0 release
2 parents 8c3ab43 + ade6fb5 commit 751ff3d

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ project (PIO C Fortran)
44

55
# The project version number.
66
set(VERSION_MAJOR 2 CACHE STRING "Project major version number.")
7-
set(VERSION_MINOR 4 CACHE STRING "Project minor version number.")
8-
set(VERSION_PATCH 4 CACHE STRING "Project patch version number.")
7+
set(VERSION_MINOR 5 CACHE STRING "Project minor version number.")
8+
set(VERSION_PATCH 0 CACHE STRING "Project patch version number.")
99
mark_as_advanced(VERSION_MAJOR VERSION_MINOR VERSION_PATCH)
1010

1111
# The size of the data buffer for write/read_darray().

configure.ac

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
## This is the autoconf file for the PIO library.
22
## Ed Hartnett 8/16/17
33

4-
54
# Initialize autoconf and automake.
6-
AC_INIT(pio, 2.4.4)
5+
AC_INIT(pio, 2.5.0)
76
AC_CONFIG_SRCDIR(src/clib/pio_darray.c)
87
AM_INIT_AUTOMAKE([foreign serial-tests])
98

109
# The PIO version, again.
1110
AC_DEFINE([PIO_VERSION_MAJOR], [2], [PIO major version])
12-
AC_DEFINE([PIO_VERSION_MINOR], [4], [PIO minor version])
13-
AC_DEFINE([PIO_VERSION_PATCH], [4], [PIO patch version])
11+
AC_DEFINE([PIO_VERSION_MINOR], [5], [PIO minor version])
12+
AC_DEFINE([PIO_VERSION_PATCH], [0], [PIO patch version])
1413

1514
# Once more for the documentation.
1615
AC_SUBST([VERSION_MAJOR], [2])
17-
AC_SUBST([VERSION_MINOR], [4])
18-
AC_SUBST([VERSION_PATCH], [4])
16+
AC_SUBST([VERSION_MINOR], [5])
17+
AC_SUBST([VERSION_PATCH], [0])
1918

2019
# The m4 directory holds macros for autoconf.
2120
AC_CONFIG_MACRO_DIR([m4])

src/clib/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ endif # BUILD_NCINT
1313
# These linker flags specify libtool version info.
1414
# See http://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning
1515
# for information regarding incrementing `-version-info`.
16-
libpioc_la_LDFLAGS = -version-info 3:0:2
16+
libpioc_la_LDFLAGS = -version-info 4:0:3
1717

1818
# The library header file will be installed in include dir.
1919
include_HEADERS = pio.h uthash.h

src/clib/pio_internal.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
#include <bget.h>
1717
#include <limits.h>
1818
#include <math.h>
19+
#include <netcdf.h>
1920
#ifdef _NETCDF4
2021
#include <netcdf_par.h>
2122
#endif

src/ncint/ncintdispatch.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
#include "config.h"
99
#include <stdlib.h>
10-
#include "ncintdispatch.h"
1110
#include "pio.h"
1211
#include "pio_internal.h"
12+
#include "ncintdispatch.h"
1313

1414
/* Prototypes from nc4internal.h. */
1515
int nc4_file_list_add(int ncid, const char *path, int mode,

0 commit comments

Comments
 (0)