Skip to content

Commit 2d87e32

Browse files
committed
Bump to 2.0.2beta
1 parent 74e2e3f commit 2d87e32

File tree

7 files changed

+23
-9
lines changed

7 files changed

+23
-9
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# Version v2.0.2beta
2+
3+
## Fixes
4+
* Correctly handle github ref tags ([74e2e3f](https://github.com/Kastakin/PyES/commit/74e2e3fa48ac7023c808a301e37f408642d2d4a5))
5+
* Correctly assign artifact names in release ([28ee8ea](https://github.com/Kastakin/PyES/commit/28ee8eaa8b9e0deb3db92d0b8c701033cab0caad))
6+
* correctly select work mode when importing BSTAC files ([556adbd](https://github.com/Kastakin/PyES/commit/556adbd10a331ad7c625a577d5fe767e7aca3c21))
7+
* Increase number of allowed decimals for titration fields ([64e7c73](https://github.com/Kastakin/PyES/commit/64e7c736ef88a1446bc0e385aea5e1c3acc84bb9))
8+
9+
## Chores
10+
* Update libeq to fix bstac import ([f9ba49c](https://github.com/Kastakin/PyES/commit/f9ba49c878d28f1ac9614071ee81c09046b3f3df))
11+
12+
113
# Version v2.0.1beta
214

315
## 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 = "2.0.1beta"
3+
version = "2.0.2beta"
44
description = ""
55
authors = ["Lorenzo Castellino <[email protected]>"]
66
license = "GPLv3"

release_text.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
# Version v2.0.1beta
1+
# Version v2.0.2beta
22

33
## Fixes
4-
* Fix regression in opening file from cli argument ([c39cf5a](https://github.com/Kastakin/PyES/commit/c39cf5a332acac2a4de465872e500d82e0e294d3))
5-
* Solve importing and exporting issues of titration data ([8bc5e03](https://github.com/Kastakin/PyES/commit/8bc5e03ae20c3d293fa1fcd752543d67d033f312))
4+
* Correctly handle github ref tags ([74e2e3f](https://github.com/Kastakin/PyES/commit/74e2e3fa48ac7023c808a301e37f408642d2d4a5))
5+
* Correctly assign artifact names in release ([28ee8ea](https://github.com/Kastakin/PyES/commit/28ee8eaa8b9e0deb3db92d0b8c701033cab0caad))
6+
* correctly select work mode when importing BSTAC files ([556adbd](https://github.com/Kastakin/PyES/commit/556adbd10a331ad7c625a577d5fe767e7aca3c21))
7+
* Increase number of allowed decimals for titration fields ([64e7c73](https://github.com/Kastakin/PyES/commit/64e7c736ef88a1446bc0e385aea5e1c3acc84bb9))
68

79
## Chores
8-
* Formatting and import sorting ([43b6bdd](https://github.com/Kastakin/PyES/commit/43b6bdda8c0871e820a0b1508eeb3c261bab2ed5))
10+
* Update libeq to fix bstac import ([f9ba49c](https://github.com/Kastakin/PyES/commit/f9ba49c878d28f1ac9614071ee81c09046b3f3df))
911

1012

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 Beta",
33
"author": "Lorenzo Castellino",
44
"main_module": "src/main/python/pyes/main.py",
5-
"version": "2.0.1",
5+
"version": "2.0.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
@@ -68,7 +68,7 @@ def setupUi(self, dialogAbout):
6868

6969
def retranslateUi(self, dialogAbout):
7070
dialogAbout.setWindowTitle(QCoreApplication.translate("dialogAbout", u"About", None))
71-
self.label.setText(QCoreApplication.translate("dialogAbout", u"PyES Version 2.0.1beta", None))
71+
self.label.setText(QCoreApplication.translate("dialogAbout", u"PyES Version 2.0.2beta", None))
7272
self.label_3.setText(QCoreApplication.translate("dialogAbout", u"<html><head/><body><p>PyES is a sotware created by the chemistry department of the University of Turin in collabration with the University of Messina and the University of Bialystok.</p><p>Based on the previous work of Professor Sammartano of the University of Messina, PyES aims to empower researchers with the ability to easly compute species distribution and simulate titration curves even for complex systems.</p><p>PyES is licensed under GPL3 and its source code is aviable on its entirety on <a href=\"https://github.com/Kastakin/PyES\"><span style=\" text-decoration: underline; color:#0000ff;\">GitHub</span></a>.</p></body></html>", None))
7373
# retranslateUi
7474

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 2.0.1beta</string>
38+
<string>PyES Version 2.0.2beta</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 = "2.0.1beta"
5+
current = "2.0.2beta"
66

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

0 commit comments

Comments
 (0)