hdf5/release_docs
Scot Breitenfeld 08e115b7d8
Added new Fortran API wrappers (#3511)
* Added new wrappers for
h5get_free_list_sizes_f
H5Sselect_intersect_block_f
H5Sselect_shape_same_f
h5pget_no_selection_io_cause_f
h5pget_mpio_no_collective_cause_f
H5Lvisit_by_name_f
H5Lvisit_f
H5Fget_info_f
h5dwrite_chunk_f
h5dread_chunk_f

* added h5pget_file_space_page_size_f, h5pset_file_space_page_size_f, h5pget_file_space_strategy_f, h5pset_file_space_strategy_f, h5info tests

* added fortran tests

* Update tH5F.F90
2023-09-07 17:25:07 -05:00
..
HISTORY-1_0-1_8_0.txt Fix 'datatype' misspellings ('dataype') (#2984) 2023-05-19 09:05:23 -07:00
HISTORY-1_8_0-1_10_0.txt Remove "the the" from comments and docs (#2865) 2023-05-01 09:06:39 -07:00
HISTORY-1_10_0-1_12_0.txt Fixed Spelling Errors (#1166) 2021-12-07 08:27:29 -06:00
HISTORY-1_12_0-1_14_0.txt Bring new release_docs scheme from 1.14 (#2614) 2023-03-22 18:41:00 -07:00
INSTALL Minor fixes for CMake code and install docs (#2623) 2023-04-03 14:38:10 -07:00
INSTALL_CMake.txt Re-enable SZIP default to ON in CMake (#3414) 2023-08-23 12:32:09 -07:00
INSTALL_Cygwin.txt Minor fixes for CMake code and install docs (#2623) 2023-04-03 14:38:10 -07:00
INSTALL_parallel Updated the parallel install docs. 2018-12-31 05:07:30 -08:00
INSTALL_Warnings.txt Removed mentions of Wdeclaration-after-statement now that C99 is requ… (#447) 2021-05-03 09:08:37 -05:00
INSTALL_Windows.txt
NEWSLETTER.txt Bring new release_docs scheme from 1.14 (#2614) 2023-03-22 18:41:00 -07:00
README_HDF5_CMake Minor fixes for CMake code and install docs (#2623) 2023-04-03 14:38:10 -07:00
README_HPC Remove H5detect and H5make_libsettings (#3104) 2023-06-13 08:16:41 -07:00
README.md Bring new release_docs scheme from 1.14 (#2614) 2023-03-22 18:41:00 -07:00
RELEASE.txt Added new Fortran API wrappers (#3511) 2023-09-07 17:25:07 -05:00
USING_CMake_Examples.txt Minor fixes for CMake code and install docs (#2623) 2023-04-03 14:38:10 -07:00
USING_HDF5_CMake.txt Minor fixes for CMake code and install docs (#2623) 2023-04-03 14:38:10 -07:00
USING_HDF5_VS.txt Add Fortran ES module to deploy list (#3341) 2023-08-04 16:38:20 -05:00

The release_docs directory

Intro

This directory contains instructions for building and using the library as well as the HDF5 history files.

HISTORY files

The HISTORY files contain the history of this branch of HDF5. They fall into three categories.

HISTORY-[VERSION 1]-[VERSION 2].txt

These files are created when we release a new major version and include all the changes that were made to the develop branch while creating a major release.

HISTORY-[VERSION].txt

This file contains the changes that were made to a maintenance branch since it split off from develop. It will also be found in the develop branch when experimental releases have been created.

RELEASE.txt

This is the changelog for the current version of the library.

For a MAJOR release (or in develop) this files lists all the changes since the last major version. For a MINOR release (or in a maintenance branch), this file lists all the changes since the last release in the maintenance branch.

Examples:

  • The file for HDF5 1.14.0 includes all the changes since HDF5 1.12.0
  • The file for HDF5 1.10.9 includes all the changes since HDF5 1.10.8
  • The file in develop includes all the changes since the last major release
  • The file in hdf5_1_14 includes all the changes since the last minor HDF5 1.14 release

Note that we make no effort to bring maintenance branch HISTORY files back to develop. If you want to compare, say, 1.10.4 with 1.12.3, you'd have to get the history files from those releases and compare them by hand.

Creating new releases

MAJOR release

  • If there were experimental releases, merge the experimental HISTORY file and the current RELEASE.txt by category to create a separate, unified file that ignores the experimental releases. Don't check this in yet or clobber any existing HISTORY/RELEASE files, but put it someplace handy for use in later steps.

  • Create the new maintenance branch

In develop:

  • Create the new HISTORY-\[VERSION 1\]-\[VERSION 2\].txt file
    • If there is an experimental HISTORY file, add RELEASE.txt to the beginning of it and use that
    • Otherwise, start with RELEASE.txt
    • Add the introduction boilerplate like in the other HISTORY files (TOC, etc.)
  • Delete any experimental HISTORY file
  • Clear out RELEASE.txt

Note that we're KEEPING any experimental release history information in the HISTORY-\[VERSION 1\]-\[VERSION 2\].txt file, so do NOT use the merged file in the above steps!

In the new maintenance branch:

  • Create the new HISTORY-\[VERSION\].txt file

    • If there is an experimental HISTORY file use the combined file you created earlier
    • Otherwise, start with RELEASE.txt
    • Add the introduction boilerplate like in the other HISTORY files (TOC, etc.)
  • Delete any experimental HISTORY file

  • Clear out RELEASE.txt

  • Create the new release branch

In the new release branch:

  • If there were experimental releases, use the combined file you created earlier as RELEASE.txt
  • Otherwise the RELEASE.txt will be used as-is

MINOR release

  • Create the release branch

In the maintenance branch:

  • Add the contents of RELEASE.txt to the beginnnig of HISTORY-\[VERSION\].txt
  • Clear out RELEASE.txt

EXPERIMENTAL release

  • Add the contents of RELEASE.txt to the beginnnig of HISTORY-\[VERSION\].txt
  • Clear out RELEASE.txt

INSTALL files

These files include instructions for building and installing HDF5 on various platforms.

USING files

These files document how to build HDF5 applications with an installed HDF5 library.