Skip to content

Commit e39cd8a

Browse files
committed
Bump to 1.1.2
1 parent b1d3db0 commit e39cd8a

File tree

7 files changed

+27
-7
lines changed

7 files changed

+27
-7
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# Version v1.1.2
2+
3+
## Features
4+
* Add monochrome plots and allow chainging units of volume and concentration ([b1d3db0](https://github.com/Kastakin/PyES/commit/b1d3db09584cbb1368a74c631f49ce2b18bc65bd))
5+
6+
## Enhancements
7+
* Better traceback when in debug mode ([b980e12](https://github.com/Kastakin/PyES/commit/b980e1217287a9823796fdbe6831a3bfa94d6b02))
8+
* Relax pyqtgraph requirements ([9785578](https://github.com/Kastakin/PyES/commit/9785578b1cfe9ed4de38a5db2f771fb0f1179f72))
9+
10+
## Fixes
11+
* Remove titrant concentraions when ignoring comps ([66ec54a](https://github.com/Kastakin/PyES/commit/66ec54ae37b88ac6f07a69730a7d5b020c06e840))
12+
13+
114
# Version v1.1.1
215

316
## Fixes

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pyes"
3-
version = "1.1.1"
3+
version = "1.1.2"
44
description = ""
55
authors = ["Lorenzo Castellino <castellino96@gmail.com>"]
66
license = "GPLv3"

release_text.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
1-
# Version v1.1.1
1+
# Version v1.1.2
2+
3+
## Features
4+
* Add monochrome plots and allow chainging units of volume and concentration ([b1d3db0](https://github.com/Kastakin/PyES/commit/b1d3db09584cbb1368a74c631f49ce2b18bc65bd))
5+
6+
## Enhancements
7+
* Better traceback when in debug mode ([b980e12](https://github.com/Kastakin/PyES/commit/b980e1217287a9823796fdbe6831a3bfa94d6b02))
8+
* Relax pyqtgraph requirements ([9785578](https://github.com/Kastakin/PyES/commit/9785578b1cfe9ed4de38a5db2f771fb0f1179f72))
29

310
## Fixes
4-
* Solve bug in export dialog ([3b45584](https://github.com/Kastakin/PyES/commit/3b45584bf14499806c70f28ef8c8f34c6fe2da15))
11+
* Remove titrant concentraions when ignoring comps ([66ec54a](https://github.com/Kastakin/PyES/commit/66ec54ae37b88ac6f07a69730a7d5b020c06e840))
512

613

src/build/settings/base.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"app_name": "PyES",
33
"author": "Lorenzo Castellino",
44
"main_module": "src/main/python/pyes/main.py",
5-
"version": "1.1.1",
5+
"version": "1.1.2",
66
"extra_pyinstaller_args": [
77
"--exclude-module",
88
"PySide6.QtQml",

src/main/python/pyes/ui/PyES_about.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def retranslateUi(self, dialogAbout):
107107
QCoreApplication.translate("dialogAbout", "About", None)
108108
)
109109
self.label.setText(
110-
QCoreApplication.translate("dialogAbout", "PyES Version 1.1.1", None)
110+
QCoreApplication.translate("dialogAbout", "PyES Version 1.1.2", None)
111111
)
112112
self.label_3.setText(
113113
QCoreApplication.translate(

src/main/python/pyes/ui/PyES_about.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<item>
3636
<widget class="QLabel" name="label">
3737
<property name="text">
38-
<string>PyES Version 1.1.1</string>
38+
<string>PyES Version 1.1.2</string>
3939
</property>
4040
</widget>
4141
</item>

tbump.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# github_url = "https://github.com/<user or organization>/<project>/"
33

44
[version]
5-
current = "1.1.1"
5+
current = "1.1.2"
66

77
# Example of a semver regexp.
88
# Make sure this matches current_version before

0 commit comments

Comments
 (0)