From 22f2680e87757fa0520d801a6a8d310db54908b1 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Sat, 18 Aug 2001 17:39:33 -0500 Subject: [svn-r4389] Purpose: Update docs. Description: Mention change to H5Awrite API from a "void *" to a "const void *" --- README.txt | 2 +- release_docs/RELEASE.txt | 6 +++++- src/H5public.h | 6 +++--- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/README.txt b/README.txt index 7bbb154..8efe52a 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,4 @@ -HDF5 version 1.4.2-post1 currently under development +HDF5 version 1.4.3-snap0 currently under development Please refer to the INSTALL file for installation instructions. ------------------------------------------------------------------------------ diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 0f98fc5..5a0d49a 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -1,4 +1,4 @@ -HDF5 version 1.4.2-post1 currently under development +HDF5 version 1.4.3-snap0 currently under development ============================================================================== @@ -38,6 +38,10 @@ New Features * Added perform programs to test the HDF5 library performance. Programs are installed in directory perform/. * Improved performance of byte-swapping during data conversions. + * Changed prototype for H5Awrite from: + H5Awrite(hid_t attr_id, hid_t type_id, void *buf) + to: + H5Awrite(hid_t attr_id, hid_t type_id, const void *buf) diff --git a/src/H5public.h b/src/H5public.h index 1c92c19..9c1eb77 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -60,10 +60,10 @@ /* Version numbers */ #define H5_VERS_MAJOR 1 /* For major interface/format changes */ #define H5_VERS_MINOR 4 /* For minor interface/format changes */ -#define H5_VERS_RELEASE 2 /* For tweaks, bug-fixes, or development */ -#define H5_VERS_SUBRELEASE "post1" /* For pre-releases like snap0 */ +#define H5_VERS_RELEASE 3 /* For tweaks, bug-fixes, or development */ +#define H5_VERS_SUBRELEASE "snap0" /* For pre-releases like snap0 */ /* Empty string for real releases. */ -#define H5_VERS_INFO "HDF5 library version: 1.4.2-post1" /* Full version string */ +#define H5_VERS_INFO "HDF5 library version: 1.4.3-snap0" /* Full version string */ #define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \ H5_VERS_RELEASE) -- cgit v0.12