diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ca4869..b7d85d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +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.2-rc1](https://github.com/NASA-AMMOS/AIT-GUI/compare/2.3.1...2.3.2-rc1) - 2021-12-29 + +### Merged + +- Fix typo that makes call to log method that doesn't exist [`#218`](https://github.com/NASA-AMMOS/AIT-GUI/pull/218) +- Issue #216 - Add Python3.7 dependency to setup.py [`#217`](https://github.com/NASA-AMMOS/AIT-GUI/pull/217) + +### Commits + +- Fixed Typo [`30c38dc`](https://github.com/NASA-AMMOS/AIT-GUI/commit/30c38dcadc1b27f2c337d7b0d7b9709ab9ebdac6) + ## [2.3.1](https://github.com/NASA-AMMOS/AIT-GUI/compare/2.3.0...2.3.1) ### Merged diff --git a/ait/gui/static/package.json b/ait/gui/static/package.json index 12e50b5..1ea3c69 100644 --- a/ait/gui/static/package.json +++ b/ait/gui/static/package.json @@ -1,6 +1,6 @@ { "name": "ait-gui", - "version": "2.3.1", + "version": "2.3.2-rc1", "description": "AIT GUI", "main": "index.js", "scripts": { diff --git a/doc/source/conf.py b/doc/source/conf.py index fe49c0d..1672e4d 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.1' +version = u'2.3.2-rc1' # The full version, including alpha/beta/rc tags. -release = u'2.3.1' +release = u'2.3.2-rc1' # 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 378b02b..1eceec3 100644 --- a/setup.py +++ b/setup.py @@ -85,7 +85,7 @@ def run(self): setup( name = 'ait-gui', - version = '2.3.1', + version = '2.3.2-rc1', description = description, long_description = long_description, long_description_content_type = 'text/x-rst',