summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.txt2
-rw-r--r--release_docs/RELEASE.txt6
-rw-r--r--src/H5public.h6
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)