Skip to content

Commit

Permalink
Bump to 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Kastakin committed Aug 10, 2023
1 parent b1d3db0 commit e39cd8a
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 7 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyes"
version = "1.1.1"
version = "1.1.2"
description = ""
authors = ["Lorenzo Castellino <castellino96@gmail.com>"]
license = "GPLv3"
Expand Down
11 changes: 9 additions & 2 deletions release_text.md
Original file line number Diff line number Diff line change
@@ -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))


2 changes: 1 addition & 1 deletion src/build/settings/base.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/main/python/pyes/ui/PyES_about.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion src/main/python/pyes/ui/PyES_about.ui
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<item>
<widget class="QLabel" name="label">
<property name="text">
<string>PyES Version 1.1.1</string>
<string>PyES Version 1.1.2</string>
</property>
</widget>
</item>
Expand Down
2 changes: 1 addition & 1 deletion tbump.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# github_url = "https://github.com/<user or organization>/<project>/"

[version]
current = "1.1.1"
current = "1.1.2"

# Example of a semver regexp.
# Make sure this matches current_version before
Expand Down

0 comments on commit e39cd8a

Please sign in to comment.