Skip to content

Commit

Permalink
Set version to 1.14.3-1.
Browse files Browse the repository at this point in the history
  • Loading branch information
lrknox committed Aug 3, 2023
1 parent 27b2d67 commit abcd47b
Show file tree
Hide file tree
Showing 10 changed files with 24 additions and 21 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
HDF5 version 1.14.2-1 currently under development
HDF5 version 1.14.3-1 currently under development

![HDF5 Logo](doxygen/img/HDF5.png)

Expand Down
2 changes: 1 addition & 1 deletion c++/src/cpp_doc_config
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME =
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = "1.14.2-1, currently under development"
PROJECT_NUMBER = "1.14.3-1, currently under development"

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion config/cmake/scripts/HDF5config.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ cmake_minimum_required (VERSION 3.18)
# CTEST_SOURCE_NAME - source folder
##############################################################################

set (CTEST_SOURCE_VERSION "1.14.2")
set (CTEST_SOURCE_VERSION "1.14.3")
set (CTEST_SOURCE_VERSEXT "-1")

##############################################################################
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ AC_PREREQ([2.71])
## NOTE: Do not forget to change the version number here when we do a
## release!!!
##
AC_INIT([HDF5], [1.14.2-1], [[email protected]])
AC_INIT([HDF5], [1.14.3-1], [[email protected]])

AC_CONFIG_SRCDIR([src/H5.c])
AC_CONFIG_HEADERS([src/H5config.h])
Expand Down
4 changes: 2 additions & 2 deletions java/src/hdf/hdf5lib/H5.java
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@
* which prints out the HDF5 error stack, as described in the HDF5 C API <i><b>@ref H5Eprint()</b>.</i> This
* may be used by Java exception handlers to print out the HDF5 error stack. <hr>
*
* @version HDF5 1.14.2 <BR>
* @version HDF5 1.14.3 <BR>
* <b>See also: </b>
* @ref HDFARRAY hdf.hdf5lib.HDFArray<br />
* @ref HDF5CONST hdf.hdf5lib.HDF5Constants<br />
Expand Down Expand Up @@ -273,7 +273,7 @@ public class H5 implements java.io.Serializable {
* </ul>
* Make sure to update the versions number when a different library is used.
*/
public final static int LIB_VERSION[] = {1, 14, 2};
public final static int LIB_VERSION[] = {1, 14, 3};

/**
* @ingroup JH5
Expand Down
4 changes: 2 additions & 2 deletions java/test/TestH5.java
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ public void testH5set_free_list_limits()
@Test
public void testH5get_libversion()
{
int libversion[] = {1, 14, 2};
int libversion[] = {1, 14, 3};

try {
H5.H5get_libversion(libversion);
Expand Down Expand Up @@ -354,7 +354,7 @@ public void testH5get_libversion_null_param()
@Test
public void testH5check_version()
{
int majnum = 1, minnum = 14, relnum = 2;
int majnum = 1, minnum = 14, relnum = 3;

try {
H5.H5check_version(majnum, minnum, relnum);
Expand Down
2 changes: 1 addition & 1 deletion release_docs/RELEASE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
HDF5 version 1.14.2-1 currently under development
HDF5 version 1.14.3-1 currently under development
================================================================================


Expand Down
9 changes: 6 additions & 3 deletions src/H5Tconv.c
Original file line number Diff line number Diff line change
Expand Up @@ -5078,7 +5078,8 @@ H5T__conv_s_s(hid_t src_id, hid_t dst_id, H5T_cdata_t *cdata, size_t nelmts, siz
herr_t
H5T__conv_schar_uchar(hid_t src_id, hid_t dst_id, H5T_cdata_t *cdata, size_t nelmts, size_t buf_stride,
size_t H5_ATTR_UNUSED bkg_stride, void *buf,
void H5_ATTR_UNUSED *bkg){H5T_CONV_su(SCHAR, UCHAR, signed char, unsigned char, -, -)}
void H5_ATTR_UNUSED *bkg)
{H5T_CONV_su(SCHAR, UCHAR, signed char, unsigned char, -, -)}

/*-------------------------------------------------------------------------
* Function: H5T__conv_uchar_schar
Expand Down Expand Up @@ -6945,7 +6946,8 @@ H5T__conv_llong_ldouble(hid_t src_id, hid_t dst_id, H5T_cdata_t *cdata, size_t n
herr_t
H5T__conv_ullong_float(hid_t src_id, hid_t dst_id, H5T_cdata_t *cdata, size_t nelmts, size_t buf_stride,
size_t H5_ATTR_UNUSED bkg_stride, void *buf,
void H5_ATTR_UNUSED *bkg){H5T_CONV_xF(ULLONG, FLOAT, unsigned long long, float, -, -)}
void H5_ATTR_UNUSED *bkg)
{H5T_CONV_xF(ULLONG, FLOAT, unsigned long long, float, -, -)}

/*-------------------------------------------------------------------------
* Function: H5T__conv_ullong_double
Expand Down Expand Up @@ -6995,7 +6997,8 @@ H5T__conv_ullong_ldouble(hid_t src_id, hid_t dst_id, H5T_cdata_t *cdata, size_t
*/
herr_t
H5T__conv_float_schar(hid_t src_id, hid_t dst_id, H5T_cdata_t *cdata, size_t nelmts, size_t buf_stride,
size_t H5_ATTR_UNUSED bkg_stride, void *buf, void H5_ATTR_UNUSED *bkg){
size_t H5_ATTR_UNUSED bkg_stride, void *buf, void H5_ATTR_UNUSED *bkg)
{
H5_GCC_CLANG_DIAG_OFF("float-equal") H5T_CONV_Fx(FLOAT, SCHAR, float, signed char, SCHAR_MIN, SCHAR_MAX)
H5_GCC_CLANG_DIAG_ON("float-equal")}

Expand Down
4 changes: 2 additions & 2 deletions src/H5public.h
Original file line number Diff line number Diff line change
Expand Up @@ -83,15 +83,15 @@
/**
* For tweaks, bug-fixes, or development
*/
#define H5_VERS_RELEASE 2
#define H5_VERS_RELEASE 3
/**
* For pre-releases like \c snap0. Empty string for official releases.
*/
#define H5_VERS_SUBRELEASE "1"
/**
* Full version string
*/
#define H5_VERS_INFO "HDF5 library version: 1.14.2-1"
#define H5_VERS_INFO "HDF5 library version: 1.14.3-1"

#define H5check() H5check_version(H5_VERS_MAJOR, H5_VERS_MINOR, H5_VERS_RELEASE)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ GROUP "/" {
USER_DEFINED_FILTER {
FILTER_ID 260
COMMENT dynlib4
PARAMS { 9 1 14 2 }
PARAMS { 9 1 14 3 }
}
}
FILLVALUE {
Expand All @@ -33,7 +33,7 @@ GROUP "/" {
USER_DEFINED_FILTER {
FILTER_ID 260
COMMENT dynlib4
PARAMS { 9 1 14 2 }
PARAMS { 9 1 14 3 }
}
}
FILLVALUE {
Expand All @@ -55,7 +55,7 @@ GROUP "/" {
USER_DEFINED_FILTER {
FILTER_ID 260
COMMENT dynlib4
PARAMS { 9 1 14 2 }
PARAMS { 9 1 14 3 }
}
}
FILLVALUE {
Expand All @@ -77,7 +77,7 @@ GROUP "/" {
USER_DEFINED_FILTER {
FILTER_ID 260
COMMENT dynlib4
PARAMS { 9 1 14 2 }
PARAMS { 9 1 14 3 }
}
}
FILLVALUE {
Expand All @@ -99,7 +99,7 @@ GROUP "/" {
USER_DEFINED_FILTER {
FILTER_ID 260
COMMENT dynlib4
PARAMS { 9 1 14 2 }
PARAMS { 9 1 14 3 }
}
}
FILLVALUE {
Expand All @@ -121,7 +121,7 @@ GROUP "/" {
USER_DEFINED_FILTER {
FILTER_ID 260
COMMENT dynlib4
PARAMS { 9 1 14 2 }
PARAMS { 9 1 14 3 }
}
}
FILLVALUE {
Expand All @@ -143,7 +143,7 @@ GROUP "/" {
USER_DEFINED_FILTER {
FILTER_ID 260
COMMENT dynlib4
PARAMS { 9 1 14 2 }
PARAMS { 9 1 14 3 }
}
}
FILLVALUE {
Expand Down

0 comments on commit abcd47b

Please sign in to comment.