diff --git a/CHANGELOG.md b/CHANGELOG.md index abd82f8..562d549 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# Version v1.1.2 + +## Features +* Add monochrome plots and allow chainging units of volume and concentration ([b1d3db0](https://github.com/Kastakin/PyES/commit/b1d3db09584cbb1368a74c631f49ce2b18bc65bd)) + +## Enhancements +* Better traceback when in debug mode ([b980e12](https://github.com/Kastakin/PyES/commit/b980e1217287a9823796fdbe6831a3bfa94d6b02)) +* Relax pyqtgraph requirements ([9785578](https://github.com/Kastakin/PyES/commit/9785578b1cfe9ed4de38a5db2f771fb0f1179f72)) + +## Fixes +* Remove titrant concentraions when ignoring comps ([66ec54a](https://github.com/Kastakin/PyES/commit/66ec54ae37b88ac6f07a69730a7d5b020c06e840)) + + # Version v1.1.1 ## Fixes diff --git a/pyproject.toml b/pyproject.toml index 9d04b74..b28a495 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyes" -version = "1.1.1" +version = "1.1.2" description = "" authors = ["Lorenzo Castellino "] license = "GPLv3" diff --git a/release_text.md b/release_text.md index 256cdff..b3dbc53 100644 --- a/release_text.md +++ b/release_text.md @@ -1,6 +1,13 @@ -# Version v1.1.1 +# Version v1.1.2 + +## Features +* Add monochrome plots and allow chainging units of volume and concentration ([b1d3db0](https://github.com/Kastakin/PyES/commit/b1d3db09584cbb1368a74c631f49ce2b18bc65bd)) + +## Enhancements +* Better traceback when in debug mode ([b980e12](https://github.com/Kastakin/PyES/commit/b980e1217287a9823796fdbe6831a3bfa94d6b02)) +* Relax pyqtgraph requirements ([9785578](https://github.com/Kastakin/PyES/commit/9785578b1cfe9ed4de38a5db2f771fb0f1179f72)) ## Fixes -* Solve bug in export dialog ([3b45584](https://github.com/Kastakin/PyES/commit/3b45584bf14499806c70f28ef8c8f34c6fe2da15)) +* Remove titrant concentraions when ignoring comps ([66ec54a](https://github.com/Kastakin/PyES/commit/66ec54ae37b88ac6f07a69730a7d5b020c06e840)) diff --git a/src/build/settings/base.json b/src/build/settings/base.json index cf22edb..8d5181e 100644 --- a/src/build/settings/base.json +++ b/src/build/settings/base.json @@ -2,7 +2,7 @@ "app_name": "PyES", "author": "Lorenzo Castellino", "main_module": "src/main/python/pyes/main.py", - "version": "1.1.1", + "version": "1.1.2", "extra_pyinstaller_args": [ "--exclude-module", "PySide6.QtQml", diff --git a/src/main/python/pyes/ui/PyES_about.py b/src/main/python/pyes/ui/PyES_about.py index 2aa7040..9479753 100644 --- a/src/main/python/pyes/ui/PyES_about.py +++ b/src/main/python/pyes/ui/PyES_about.py @@ -107,7 +107,7 @@ def retranslateUi(self, dialogAbout): QCoreApplication.translate("dialogAbout", "About", None) ) self.label.setText( - QCoreApplication.translate("dialogAbout", "PyES Version 1.1.1", None) + QCoreApplication.translate("dialogAbout", "PyES Version 1.1.2", None) ) self.label_3.setText( QCoreApplication.translate( diff --git a/src/main/python/pyes/ui/PyES_about.ui b/src/main/python/pyes/ui/PyES_about.ui index f7e5fe4..0d7d35f 100644 --- a/src/main/python/pyes/ui/PyES_about.ui +++ b/src/main/python/pyes/ui/PyES_about.ui @@ -35,7 +35,7 @@ - PyES Version 1.1.1 + PyES Version 1.1.2 diff --git a/tbump.toml b/tbump.toml index f3a3ffd..0fcb138 100644 --- a/tbump.toml +++ b/tbump.toml @@ -2,7 +2,7 @@ # github_url = "https://github.com///" [version] -current = "1.1.1" +current = "1.1.2" # Example of a semver regexp. # Make sure this matches current_version before