Skip to content

Commit 85f9c4f

Browse files
committed
Bump to 1.1.3
1 parent 7a709ed commit 85f9c4f

7 files changed

Lines changed: 35 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
# Version v1.1.3
2+
3+
## Features
4+
* Add commands to edit all columns ([7a709ed](https://github.com/Kastakin/PyES/commit/7a709edf0a5c83c3b172933de6e557f67b0b73eb))
5+
* Calculate percentages on the fly for plotting purposes ([ddc04d7](https://github.com/Kastakin/PyES/commit/ddc04d7797c277df9717b15685a5bed684caec06))
6+
7+
## Enhancements
8+
* Use dequeue instead of list for keeping track of concentration of previous points ([b919663](https://github.com/Kastakin/PyES/commit/b919663dd7ebcd712189f1bdcdcf8e86719f629d))
9+
10+
## Fixes
11+
* Update Pillow dependency to avoid vulnerability ([1b72e3c](https://github.com/Kastakin/PyES/commit/1b72e3c00475079db0d03715d7d23ace1fb0fee4))
12+
13+
## Chores
14+
* Add missing generated artifacts ([4ddba12](https://github.com/Kastakin/PyES/commit/4ddba12534f8d17b3150912a705e9e1e7ea3b3d0))
15+
* Lock pyinstaller version ([a9151b5](https://github.com/Kastakin/PyES/commit/a9151b5496bf99eaa9ae98e8abcefd5820a33d19))
16+
* Improve reliability of benchmark scripts ([a9c186b](https://github.com/Kastakin/PyES/commit/a9c186b1b6a1ca8cfe303500f7dc69e37588c71d))
17+
* Add generics methods for models ([d0b61c3](https://github.com/Kastakin/PyES/commit/d0b61c335574592ebca45e2b3da1534e51a8f960))
18+
19+
120
# Version v1.1.2
221

322
## Features

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.2"
3+
version = "1.1.3"
44
description = ""
55
authors = ["Lorenzo Castellino <castellino96@gmail.com>"]
66
license = "GPLv3"

release_text.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
1-
# Version v1.1.2
1+
# Version v1.1.3
22

33
## Features
4-
* Add monochrome plots and allow chainging units of volume and concentration ([b1d3db0](https://github.com/Kastakin/PyES/commit/b1d3db09584cbb1368a74c631f49ce2b18bc65bd))
4+
* Add commands to edit all columns ([7a709ed](https://github.com/Kastakin/PyES/commit/7a709edf0a5c83c3b172933de6e557f67b0b73eb))
5+
* Calculate percentages on the fly for plotting purposes ([ddc04d7](https://github.com/Kastakin/PyES/commit/ddc04d7797c277df9717b15685a5bed684caec06))
56

67
## 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))
8+
* Use dequeue instead of list for keeping track of concentration of previous points ([b919663](https://github.com/Kastakin/PyES/commit/b919663dd7ebcd712189f1bdcdcf8e86719f629d))
99

1010
## Fixes
11-
* Remove titrant concentraions when ignoring comps ([66ec54a](https://github.com/Kastakin/PyES/commit/66ec54ae37b88ac6f07a69730a7d5b020c06e840))
11+
* Update Pillow dependency to avoid vulnerability ([1b72e3c](https://github.com/Kastakin/PyES/commit/1b72e3c00475079db0d03715d7d23ace1fb0fee4))
12+
13+
## Chores
14+
* Add missing generated artifacts ([4ddba12](https://github.com/Kastakin/PyES/commit/4ddba12534f8d17b3150912a705e9e1e7ea3b3d0))
15+
* Lock pyinstaller version ([a9151b5](https://github.com/Kastakin/PyES/commit/a9151b5496bf99eaa9ae98e8abcefd5820a33d19))
16+
* Improve reliability of benchmark scripts ([a9c186b](https://github.com/Kastakin/PyES/commit/a9c186b1b6a1ca8cfe303500f7dc69e37588c71d))
17+
* Add generics methods for models ([d0b61c3](https://github.com/Kastakin/PyES/commit/d0b61c335574592ebca45e2b3da1534e51a8f960))
1218

1319

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.2",
5+
"version": "1.1.3",
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.2", None)
110+
QCoreApplication.translate("dialogAbout", "PyES Version 1.1.3", 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.2</string>
38+
<string>PyES Version 1.1.3</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.2"
5+
current = "1.1.3"
66

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

0 commit comments

Comments
 (0)