summaryrefslogtreecommitdiffstats
path: root/RELEASE
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1998-10-30 14:40:37 (GMT)
committerRobb Matzke <matzke@llnl.gov>1998-10-30 14:40:37 (GMT)
commitc9102de1c5d1fdf915d3491be45a57805dad9cd2 (patch)
treeb17026217b5c1368325d70f6c172a24eaef0069d /RELEASE
parentec2a200ee084bd603db018c69a1560e31424533b (diff)
downloadhdf5-c9102de1c5d1fdf915d3491be45a57805dad9cd2.zip
hdf5-c9102de1c5d1fdf915d3491be45a57805dad9cd2.tar.gz
hdf5-c9102de1c5d1fdf915d3491be45a57805dad9cd2.tar.bz2
[svn-r848] ./RELEASE
Updated version number. Added a `Changes since the Beta Release' section. Please fill in with anything appropriate.
Diffstat (limited to 'RELEASE')
-rw-r--r--RELEASE23
1 files changed, 22 insertions, 1 deletions
diff --git a/RELEASE b/RELEASE
index a734641..76f47ca 100644
--- a/RELEASE
+++ b/RELEASE
@@ -1,5 +1,26 @@
-Release information for hdf5-1.0.23a
+Release information for hdf5-1.0.0
------------------------------------
+
+ CHANGES SINCE THE BETA RELEASE
+
+* Added fill values for datasets. For contiguous datasets fill value
+ performance may be quite poor since the fill value is written to the
+ entire dataset when the dataset is created. This will be remedied
+ in a future version. Chunked datasets using fill values do not
+ incur any additional overhead. See H5Pset_fill_value().
+
+* Multiple hdf5 files can be "mounted" on one another to create a
+ larger virtual file. See H5Fmount().
+
+* Object names can be removed or changed but objects are never
+ actually removed from the file yet. See H5Gunlink() and H5Gmove().
+
+* Added a tuning mechanism for B-trees to insure that sequential
+ writes to chunked datasets use less overhead. See H5Pset_btree_ratios().
+
+* Various optimizations and bug fixes.
+
+
CHANGES SINCE THE SECOND ALPHA
* Strided hyperslab selections in dataspaces now working.