Skip to content

Commit

Permalink
Bump to 2.0.9beta
Browse files Browse the repository at this point in the history
  • Loading branch information
Kastakin committed Dec 12, 2024
1 parent 76461bd commit b4fad83
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 18 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Version v2.0.9beta

## Fixes
* revert to macos 13 to compile for x86 ([76461bd](https://github.com/Kastakin/PyES/commit/76461bde09348a207311bb09e37d2d86b4614949))


# Version v2.0.8beta

## Enhancements
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 = "2.0.8beta"
version = "2.0.9beta"
description = ""
authors = ["Lorenzo Castellino <[email protected]>"]
license = "GPLv3"
Expand Down
15 changes: 2 additions & 13 deletions release_text.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,6 @@
# Version v2.0.8beta

## Enhancements
* Reorder exported sheets for clarity ([a141dec](https://github.com/Kastakin/PyES/commit/a141deca4d9c87816befd1a601c2f08f5549421a))
* Improve Titration settings button location ([1665afd](https://github.com/Kastakin/PyES/commit/1665afd2e9db1d95aab1722c0cb757e13df7cdb5))
# Version v2.0.9beta

## Fixes
* Start titration numbering from 1 instead of 0 ([e639866](https://github.com/Kastakin/PyES/commit/e639866d09f53c42ac1bcfda004b4a44233695a6))
* Include failsafe if no weights are imported ([678dea4](https://github.com/Kastakin/PyES/commit/678dea4978afe0fcee3a8829ce471874ed0cb3ca))
* Better spinbox fields ([a59c949](https://github.com/Kastakin/PyES/commit/a59c9499081c7e4d187e94c96b76d41bc712bac3))
* Update build requirements ([62caa21](https://github.com/Kastakin/PyES/commit/62caa216d7c40831b99d558545f4489cbc6ccdc5))
* Consistent style across OS for delegates ([5630276](https://github.com/Kastakin/PyES/commit/5630276a811573ed7a60a3c2863fdaa76579eb11))

## Others
* Update latest libeq ([d21b4cb](https://github.com/Kastakin/PyES/commit/d21b4cbf76300e5b1d4c14cbdb38f7fd76ba9100))
* revert to macos 13 to compile for x86 ([76461bd](https://github.com/Kastakin/PyES/commit/76461bde09348a207311bb09e37d2d86b4614949))


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

def retranslateUi(self, dialogAbout):
dialogAbout.setWindowTitle(QCoreApplication.translate("dialogAbout", u"About", None))
self.label.setText(QCoreApplication.translate("dialogAbout", u"PyES Version 2.0.8beta", None))
self.label.setText(QCoreApplication.translate("dialogAbout", u"PyES Version 2.0.9beta", None))
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))
# retranslateUi

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 2.0.8beta</string>
<string>PyES Version 2.0.9beta</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 = "2.0.8beta"
current = "2.0.9beta"

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

0 comments on commit b4fad83

Please sign in to comment.