diff --git a/ChangeLog b/ChangeLog index 1bc839e..6cf961a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,16 @@ -2022.???: +2022.103: 3.0.10 + - Fix uninitialized file position in ms3_readtracelist_selection() (#80) + by @anowacki. + - Fix array index warning in crc32c.c. + - Update emmbedded Parson to 1.4.0. + - Simplify byte swapping routines (#75) by @QuLogic. - Initialize selection.pubversion to 0 in ms3_readtracelist_timewin() by @Cuda-Chen. + - Make logging facility thread safe, with per-thread parameters. + - Add lm_pararead.c example to illustrate reading miniSEED in parallel + using re-entrant interfaces and POSIX threading. + - Add Add MS_HPTIME2NSTIME and MS_NSTIME2HPTIME macros to convert + to/from version 2.x time values. 2021.234: 3.0.9 - Update Source Identifier handling to the adopted specification of: diff --git a/libmseed.h b/libmseed.h index b5d85b0..7b4c5a6 100644 --- a/libmseed.h +++ b/libmseed.h @@ -28,8 +28,8 @@ extern "C" { #endif -#define LIBMSEED_VERSION "3.0.9" //!< Library version -#define LIBMSEED_RELEASE "2021.234" //!< Library release date +#define LIBMSEED_VERSION "3.0.10" //!< Library version +#define LIBMSEED_RELEASE "2022.103" //!< Library release date /** @defgroup io-functions File and URL I/O */ /** @defgroup miniseed-record Record Handling */