From ac75c7672273418aa1e4f8f560d967086d39c7e3 Mon Sep 17 00:00:00 2001 From: Michael Joyce Date: Wed, 26 Jul 2023 17:08:33 -0700 Subject: [PATCH] Prep for 2.4.1 --- CHANGELOG.md | 13 +++++++++++-- ait/gui/static/package.json | 2 +- doc/source/conf.py | 4 ++-- pyproject.toml | 2 +- 4 files changed, 15 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cd9925..1ba3493 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,18 @@ 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.4.0](https://github.com/NASA-AMMOS/AIT-GUI/compare/2.3.2-rc1...2.4.0) +## [2.4.1](https://github.com/NASA-AMMOS/AIT-GUI/compare/2.4.0...2.4.1) + +### Commits + +- Fix RST formatting issues that were breaking PyPI [`011b63b`](https://github.com/NASA-AMMOS/AIT-GUI/commit/011b63bdb62426def957c6c49febbe08d436ea9d) + +## [2.4.0](https://github.com/NASA-AMMOS/AIT-GUI/compare/2.3.2-rc1...2.4.0) - 2023-07-26 ### Merged +- Issue #253 - Add ait-example to poetry scripts [`#255`](https://github.com/NASA-AMMOS/AIT-GUI/pull/255) +- Issue #252 - Drop setup.py [`#254`](https://github.com/NASA-AMMOS/AIT-GUI/pull/254) - Issue #241 - Add linters and dev tools to match Core [`#250`](https://github.com/NASA-AMMOS/AIT-GUI/pull/250) - Issue #245 - Drop ait/__init__.py [`#246`](https://github.com/NASA-AMMOS/AIT-GUI/pull/246) - Issue #247 - Pin greenlet version [`#248`](https://github.com/NASA-AMMOS/AIT-GUI/pull/248) @@ -25,18 +33,19 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). ### Commits +- UI static artifact updates for 2.4.0 release [`ac6091f`](https://github.com/NASA-AMMOS/AIT-GUI/commit/ac6091fe7deb3dfa922099e25b3e5a8d59b0839c) - Update Python version bounds to match Core [`e6981cc`](https://github.com/NASA-AMMOS/AIT-GUI/commit/e6981cca077a67f42c2d1009cf83a95414d496d4) - Poetry lock file update post dev dependency updates [`6430481`](https://github.com/NASA-AMMOS/AIT-GUI/commit/64304815875ddfc3d838ae19708bb5d3c7fe74a4) - Add poetry and pre-comit. Also fix related linter issues. [`517d3da`](https://github.com/NASA-AMMOS/AIT-GUI/commit/517d3dada1436e4c57b7203472b43cfbc5f65e58) - Issue #241 - Linter compliance updates [`cf6865e`](https://github.com/NASA-AMMOS/AIT-GUI/commit/cf6865eed78d92e533f3af17a47bb16587d13b19) - Bump sphinx dependency version for docs build debug [`8ee8d90`](https://github.com/NASA-AMMOS/AIT-GUI/commit/8ee8d9093473fe9f58c51fe97746ba42ed990d49) - Issue #241 - Add linters and checks to match Core [`cd00594`](https://github.com/NASA-AMMOS/AIT-GUI/commit/cd005944a0bfab12d3d76192bd0a1410accc2cbb) +- Prep for 2.4.0 release [`246ba43`](https://github.com/NASA-AMMOS/AIT-GUI/commit/246ba43b4d0affc9c761aeb09c70bf5e29a53c96) - gitignore updates [`752a262`](https://github.com/NASA-AMMOS/AIT-GUI/commit/752a262729d49883ee2bef879518a2c12e0f840e) - Issue #241 - Add tox config and update gitignore [`a35a02e`](https://github.com/NASA-AMMOS/AIT-GUI/commit/a35a02e68fc7384ab286ff681db07747a2fc859a) - Issue #241 - Update README with dev tool related updates [`2be208c`](https://github.com/NASA-AMMOS/AIT-GUI/commit/2be208cb840eb2a574dd85a99eaf9abc31125545) - Ignore some spurious mypy errors [`7fdd86f`](https://github.com/NASA-AMMOS/AIT-GUI/commit/7fdd86f63aca275ba1a17d6703b04b13993c7527) - Update RTD config for broken build debug [`16b2d9e`](https://github.com/NASA-AMMOS/AIT-GUI/commit/16b2d9ef32840559bab0be0c4165c41b9cafbb7e) -- Issue #253 - Add ait-example to poetry scripts [`81825c0`](https://github.com/NASA-AMMOS/AIT-GUI/commit/81825c011210d32a46e2bf9473894f277781e56d) - Add explicit sphinx-js dependency for RTD build debug [`7bfe6e2`](https://github.com/NASA-AMMOS/AIT-GUI/commit/7bfe6e223e07358badfac8fbdf2f1b89b19a0c0a) - Issue #231 - Update requires poetry core version [`b6caa64`](https://github.com/NASA-AMMOS/AIT-GUI/commit/b6caa643494a8d5934817a52f5facaa6f3452e49) diff --git a/ait/gui/static/package.json b/ait/gui/static/package.json index 6426927..84c16e0 100644 --- a/ait/gui/static/package.json +++ b/ait/gui/static/package.json @@ -1,6 +1,6 @@ { "name": "ait-gui", - "version": "2.4.0", + "version": "2.4.1", "description": "AIT GUI", "main": "index.js", "scripts": { diff --git a/doc/source/conf.py b/doc/source/conf.py index 529b9fe..6b21601 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -72,9 +72,9 @@ # built documents. # # The short X.Y version. -version = u'2.4.0' +version = u'2.4.1' # The full version, including alpha/beta/rc tags. -release = u'2.4.0' +release = u'2.4.1' # 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 365c8c8..69f74c4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "ait-gui" -version = "2.4.0" +version = "2.4.1" description = """\ A framework for building a custom website for realtime telemetry \ monitoring, commanding, and other MOS operations, built atop the \