diff --git a/CHANGELOG.md b/CHANGELOG.md index f0d2f8d0..edf9f64a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). -## [2.5.1](https://github.com/NASA-AMMOS/AIT-Core/compare/2.5.0...2.5.1) +## [2.5.2](https://github.com/NASA-AMMOS/AIT-Core/compare/2.5.1...2.5.2) + +### Merged + +- Issue #514 - ait-create-dirs uses call to old method name [`#515`](https://github.com/NASA-AMMOS/AIT-Core/pull/515) +- Update method calls to use read_binary() and read_text(). [`#513`](https://github.com/NASA-AMMOS/AIT-Core/pull/513) +- Fix issue 506 for reference to get_gps_offset_for_date(). [`#512`](https://github.com/NASA-AMMOS/AIT-Core/pull/512) +- Issue #507 - Fix invalid content validation check in base val.py classes [`#509`](https://github.com/NASA-AMMOS/AIT-Core/pull/509) +- Issue #505 - Update hooks to run YAML verification on every commit [`#508`](https://github.com/NASA-AMMOS/AIT-Core/pull/508) + +### Commits + +- Issue #505 - Update commit hooks to run YAML verification on every commit [`75618a9`](https://github.com/NASA-AMMOS/AIT-Core/commit/75618a9a78ef772e1665b956f61ab4b5a88e3470) +- DMC leapsecond file testdata update [`7747803`](https://github.com/NASA-AMMOS/AIT-Core/commit/77478032ea00f4afe7424809db6abdaf62c0840e) + +## [2.5.1](https://github.com/NASA-AMMOS/AIT-Core/compare/2.5.0...2.5.1) - 2023-11-30 ### Merged @@ -15,6 +30,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). ### Commits +- Prep for 2.5.1 release [`1fdfd45`](https://github.com/NASA-AMMOS/AIT-Core/commit/1fdfd45e9085c036df2a1279643efb468490f424) - Issue #502 - Fix leapsecond file retrieval location [`06e49a2`](https://github.com/NASA-AMMOS/AIT-Core/commit/06e49a2f5da6d181956fa27b8b84f8b5211cd9ab) - Fix malformed server config in docs pages [`64da97c`](https://github.com/NASA-AMMOS/AIT-Core/commit/64da97c44775e23cb0b336511d82403f8ef16143) - Fix additional malformed server config in docs pages [`184d8be`](https://github.com/NASA-AMMOS/AIT-Core/commit/184d8bec62c274627ffd1bc488f4e70555caf8e7) diff --git a/doc/source/conf.py b/doc/source/conf.py index 3a551d27..897330e2 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -69,9 +69,9 @@ # built documents. # # The short X.Y version. -version = u'2.5.1' +version = u'2.5.2' # The full version, including alpha/beta/rc tags. -release = u'2.5.1' +release = u'2.5.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyproject.toml b/pyproject.toml index abdf66cd..34fc2e55 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = 'ait-core' -version = '2.5.1' +version = '2.5.2' description = "NASA JPL's Ground Data System toolkit for Instrument and CubeSat Missions" license = 'MIT' readme = 'README.rst'