Skip to content

Commit

Permalink
Merge pull request #1614 from NCAR/ejh_prepare
Browse files Browse the repository at this point in the history
changed version numbers for 2.5.0 release
  • Loading branch information
edwardhartnett authored Nov 27, 2019
2 parents 8c3ab43 + ade6fb5 commit 751ff3d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ project (PIO C Fortran)

# The project version number.
set(VERSION_MAJOR 2 CACHE STRING "Project major version number.")
set(VERSION_MINOR 4 CACHE STRING "Project minor version number.")
set(VERSION_PATCH 4 CACHE STRING "Project patch version number.")
set(VERSION_MINOR 5 CACHE STRING "Project minor version number.")
set(VERSION_PATCH 0 CACHE STRING "Project patch version number.")
mark_as_advanced(VERSION_MAJOR VERSION_MINOR VERSION_PATCH)

# The size of the data buffer for write/read_darray().
Expand Down
11 changes: 5 additions & 6 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
## This is the autoconf file for the PIO library.
## Ed Hartnett 8/16/17


# Initialize autoconf and automake.
AC_INIT(pio, 2.4.4)
AC_INIT(pio, 2.5.0)
AC_CONFIG_SRCDIR(src/clib/pio_darray.c)
AM_INIT_AUTOMAKE([foreign serial-tests])

# The PIO version, again.
AC_DEFINE([PIO_VERSION_MAJOR], [2], [PIO major version])
AC_DEFINE([PIO_VERSION_MINOR], [4], [PIO minor version])
AC_DEFINE([PIO_VERSION_PATCH], [4], [PIO patch version])
AC_DEFINE([PIO_VERSION_MINOR], [5], [PIO minor version])
AC_DEFINE([PIO_VERSION_PATCH], [0], [PIO patch version])

# Once more for the documentation.
AC_SUBST([VERSION_MAJOR], [2])
AC_SUBST([VERSION_MINOR], [4])
AC_SUBST([VERSION_PATCH], [4])
AC_SUBST([VERSION_MINOR], [5])
AC_SUBST([VERSION_PATCH], [0])

# The m4 directory holds macros for autoconf.
AC_CONFIG_MACRO_DIR([m4])
Expand Down
2 changes: 1 addition & 1 deletion src/clib/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ endif # BUILD_NCINT
# 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`.
libpioc_la_LDFLAGS = -version-info 3:0:2
libpioc_la_LDFLAGS = -version-info 4:0:3

# The library header file will be installed in include dir.
include_HEADERS = pio.h uthash.h
Expand Down
1 change: 1 addition & 0 deletions src/clib/pio_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
#include <bget.h>
#include <limits.h>
#include <math.h>
#include <netcdf.h>
#ifdef _NETCDF4
#include <netcdf_par.h>
#endif
Expand Down
2 changes: 1 addition & 1 deletion src/ncint/ncintdispatch.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

#include "config.h"
#include <stdlib.h>
#include "ncintdispatch.h"
#include "pio.h"
#include "pio_internal.h"
#include "ncintdispatch.h"

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

0 comments on commit 751ff3d

Please sign in to comment.