diff --git a/CHANGELOG.md b/CHANGELOG.md index 48a63871..aeb0e667 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +## [0.24.0](https://github.com/NASA-AMMOS/AIT-GUI/tree/0.24.0) (2018-04-24) +[Full Changelog](https://github.com/NASA-AMMOS/AIT-GUI/compare/0.23.1...0.24.0) + +**Closed issues:** + +- Add telemetry limit monitoring and user notification support [\#22](https://github.com/NASA-AMMOS/AIT-GUI/issues/22) + +**Merged pull requests:** + +- Issue \#22 - Add telemetry limit monitoring and user notification support [\#23](https://github.com/NASA-AMMOS/AIT-GUI/pull/23) ([MJJoyce](https://github.com/MJJoyce)) + ## [0.23.1](https://github.com/NASA-AMMOS/AIT-GUI/tree/0.23.1) (2018-04-21) [Full Changelog](https://github.com/NASA-AMMOS/AIT-GUI/compare/0.23.0...0.23.1) diff --git a/bliss/gui/static/package.json b/bliss/gui/static/package.json index af522635..bf30214f 100644 --- a/bliss/gui/static/package.json +++ b/bliss/gui/static/package.json @@ -1,6 +1,6 @@ { "name": "bliss-gui", - "version": "0.23.1", + "version": "0.24.0", "description": "BLISS GUI", "main": "index.js", "scripts": { diff --git a/doc/source/conf.py b/doc/source/conf.py index f0afa669..56f73cbb 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -62,9 +62,9 @@ # built documents. # # The short X.Y version. -version = u'0.23.1' +version = u'0.24.0' # The full version, including alpha/beta/rc tags. -release = u'0.23.1' +release = u'0.24.0' # 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 67f5a4a3..5d8db213 100644 --- a/setup.py +++ b/setup.py @@ -76,7 +76,7 @@ def run(self): setup( name = 'bliss-gui', - version = '0.23.1', + version = '0.24.0', packages = find_packages(exclude=['tests']), author = 'BLISS-Core Development Team', author_email = 'bliss@jpl.nasa.gov', @@ -84,7 +84,7 @@ def run(self): namespace_packages = ['bliss'], include_package_data = True, - install_requires = ['bliss-core>=0.36.0'], + install_requires = ['bliss-core>=0.37.0'], extras_require = { 'docs': [ 'Sphinx==1.7.2',