[svn-r6835]

Purpose: Maintenance

Description: I changed release version to 1.5.54.
             Email about tetsing of 1.5.53 will be send after this checkins.

Solution: used bin/h5vers -s to change the version number

Platforms tested: Done on arabica

Misc. update:
This commit is contained in:
Elena Pourmal 2003-05-08 14:14:29 -05:00
parent 4d9ea22570
commit df446a46d5
9 changed files with 7384 additions and 5451 deletions

View File

@ -1,4 +1,4 @@
HDF5 version 1.5.53 currently under development
HDF5 version 1.5.54 currently under development
Please refer to the release_docs/INSTALL file for installation instructions.
------------------------------------------------------------------------------

1723
c++/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -27,7 +27,7 @@ dnl
dnl NOTE: Don't forget to change the version number here when we do a
dnl release!!!
dnl
AC_INIT([HDF5 C++], [1.5.53], [hdfhelp@ncsa.uiuc.edu])
AC_INIT([HDF5 C++], [1.5.54], [hdfhelp@ncsa.uiuc.edu])
AC_CONFIG_SRCDIR([src/H5Library.cpp])
AC_CONFIG_AUX_DIR([../bin])

9089
configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -24,7 +24,7 @@ dnl
dnl NOTE: Don't forget to change the version number here when we do a
dnl release!!!
dnl
AC_INIT([HDF5], [1.5.53], [hdfhelp@ncsa.uiuc.edu])
AC_INIT([HDF5], [1.5.54], [hdfhelp@ncsa.uiuc.edu])
AC_CONFIG_SRCDIR([src/H5.c])
AC_CONFIG_HEADER([src/H5config.h])

2009
fortran/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -24,7 +24,7 @@ dnl
dnl NOTE: Don't forget to change the version number here when we do a
dnl release!!!
dnl
AC_INIT([HDF5 Fortran], [1.5.53], [hdfhelp@ncsa.uiuc.edu])
AC_INIT([HDF5 Fortran], [1.5.54], [hdfhelp@ncsa.uiuc.edu])
AC_CONFIG_SRCDIR([src/HDF5.f90])
AC_CONFIG_HEADER([src/H5config_fortran.h])

View File

@ -1,4 +1,4 @@
HDF5 version 1.5.53 currently under development
HDF5 version 1.5.54 currently under development
================================================================================

View File

@ -75,10 +75,10 @@ extern "C" {
/* Version numbers */
#define H5_VERS_MAJOR 1 /* For major interface/format changes */
#define H5_VERS_MINOR 5 /* For minor interface/format changes */
#define H5_VERS_RELEASE 53 /* For tweaks, bug-fixes, or development */
#define H5_VERS_RELEASE 54 /* For tweaks, bug-fixes, or development */
#define H5_VERS_SUBRELEASE "" /* For pre-releases like snap0 */
/* Empty string for real releases. */
#define H5_VERS_INFO "HDF5 library version: 1.5.53" /* Full version string */
#define H5_VERS_INFO "HDF5 library version: 1.5.54" /* Full version string */
#define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \
H5_VERS_RELEASE)