From a01898e81834266ef9b7a1582295df4349c64601 Mon Sep 17 00:00:00 2001 From: Michael Joyce Date: Wed, 10 Mar 2021 15:18:56 -0800 Subject: [PATCH] Prep for 2.3.1 release --- CHANGELOG.md | 16 +++++++++++++++- ait/gui/static/package.json | 2 +- doc/source/conf.py | 4 ++-- setup.py | 2 +- 4 files changed, 19 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98c39a4..4ca4869 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,17 @@ 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.3.0](https://github.com/NASA-AMMOS/AIT-GUI/compare/2.2.2...2.3.0) +## [2.3.1](https://github.com/NASA-AMMOS/AIT-GUI/compare/2.3.0...2.3.1) + +### Merged + +- Issue #200 - Properly decode received log messages in GUI plugin [`#201`](https://github.com/NASA-AMMOS/AIT-GUI/pull/201) + +### Fixed + +- Issue #200 - Properly decode received log messages in GUI plugin [`#200`](https://github.com/NASA-AMMOS/AIT-GUI/issues/200) + +## [2.3.0](https://github.com/NASA-AMMOS/AIT-GUI/compare/2.2.2...2.3.0) - 2021-03-10 ### Merged @@ -22,6 +32,10 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Issue #194 - Fix improperly initialized 'dntoeu' packet states [`#194`](https://github.com/NASA-AMMOS/AIT-GUI/issues/194) - Issue #196 - Fix UI Time64 decode handling of 0 value [`#196`](https://github.com/NASA-AMMOS/AIT-GUI/issues/196) +### Commits + +- Prep for 2.3.0 release [`7c8be23`](https://github.com/NASA-AMMOS/AIT-GUI/commit/7c8be235f896ec5d4a9085dea4af420100823e25) + ## [2.2.2](https://github.com/NASA-AMMOS/AIT-GUI/compare/2.2.1...2.2.2) - 2021-02-01 ### Merged diff --git a/ait/gui/static/package.json b/ait/gui/static/package.json index 636c70d..12e50b5 100644 --- a/ait/gui/static/package.json +++ b/ait/gui/static/package.json @@ -1,6 +1,6 @@ { "name": "ait-gui", - "version": "2.3.0", + "version": "2.3.1", "description": "AIT GUI", "main": "index.js", "scripts": { diff --git a/doc/source/conf.py b/doc/source/conf.py index a58e35c..fe49c0d 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.3.0' +version = u'2.3.1' # The full version, including alpha/beta/rc tags. -release = u'2.3.0' +release = u'2.3.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 971f46d..5969698 100644 --- a/setup.py +++ b/setup.py @@ -85,7 +85,7 @@ def run(self): setup( name = 'ait-gui', - version = '2.3.0', + version = '2.3.1', description = description, long_description = long_description, long_description_content_type = 'text/x-rst',