Skip to content

Commit 0ee4e73

Browse files
committed
Bump to 2.0.8beta
1 parent d21b4cb commit 0ee4e73

File tree

7 files changed

+35
-7
lines changed

7 files changed

+35
-7
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# Version v2.0.8beta
2+
3+
## Enhancements
4+
* Reorder exported sheets for clarity ([a141dec](https://github.com/Kastakin/PyES/commit/a141deca4d9c87816befd1a601c2f08f5549421a))
5+
* Improve Titration settings button location ([1665afd](https://github.com/Kastakin/PyES/commit/1665afd2e9db1d95aab1722c0cb757e13df7cdb5))
6+
7+
## Fixes
8+
* Start titration numbering from 1 instead of 0 ([e639866](https://github.com/Kastakin/PyES/commit/e639866d09f53c42ac1bcfda004b4a44233695a6))
9+
* Include failsafe if no weights are imported ([678dea4](https://github.com/Kastakin/PyES/commit/678dea4978afe0fcee3a8829ce471874ed0cb3ca))
10+
* Better spinbox fields ([a59c949](https://github.com/Kastakin/PyES/commit/a59c9499081c7e4d187e94c96b76d41bc712bac3))
11+
* Update build requirements ([62caa21](https://github.com/Kastakin/PyES/commit/62caa216d7c40831b99d558545f4489cbc6ccdc5))
12+
* Consistent style across OS for delegates ([5630276](https://github.com/Kastakin/PyES/commit/5630276a811573ed7a60a3c2863fdaa76579eb11))
13+
14+
## Others
15+
* Update latest libeq ([d21b4cb](https://github.com/Kastakin/PyES/commit/d21b4cbf76300e5b1d4c14cbdb38f7fd76ba9100))
16+
17+
118
# Version v2.0.7beta
219

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

release_text.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
1-
# Version v2.0.7beta
1+
# Version v2.0.8beta
2+
3+
## Enhancements
4+
* Reorder exported sheets for clarity ([a141dec](https://github.com/Kastakin/PyES/commit/a141deca4d9c87816befd1a601c2f08f5549421a))
5+
* Improve Titration settings button location ([1665afd](https://github.com/Kastakin/PyES/commit/1665afd2e9db1d95aab1722c0cb757e13df7cdb5))
26

37
## Fixes
4-
* Try rolling back to previous working PySide version ([de023c3](https://github.com/Kastakin/PyES/commit/de023c3f1852d9d49cdee2339e0a007a6e397095))
8+
* Start titration numbering from 1 instead of 0 ([e639866](https://github.com/Kastakin/PyES/commit/e639866d09f53c42ac1bcfda004b4a44233695a6))
9+
* Include failsafe if no weights are imported ([678dea4](https://github.com/Kastakin/PyES/commit/678dea4978afe0fcee3a8829ce471874ed0cb3ca))
10+
* Better spinbox fields ([a59c949](https://github.com/Kastakin/PyES/commit/a59c9499081c7e4d187e94c96b76d41bc712bac3))
11+
* Update build requirements ([62caa21](https://github.com/Kastakin/PyES/commit/62caa216d7c40831b99d558545f4489cbc6ccdc5))
12+
* Consistent style across OS for delegates ([5630276](https://github.com/Kastakin/PyES/commit/5630276a811573ed7a60a3c2863fdaa76579eb11))
13+
14+
## Others
15+
* Update latest libeq ([d21b4cb](https://github.com/Kastakin/PyES/commit/d21b4cbf76300e5b1d4c14cbdb38f7fd76ba9100))
516

617

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.7",
5+
"version": "2.0.8",
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.7beta", None))
71+
self.label.setText(QCoreApplication.translate("dialogAbout", u"PyES Version 2.0.8beta", 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.7beta</string>
38+
<string>PyES Version 2.0.8beta</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.7beta"
5+
current = "2.0.8beta"
66

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

0 commit comments

Comments
 (0)