Skip to content

Commit

Permalink
Bump to 2.0.1beta
Browse files Browse the repository at this point in the history
  • Loading branch information
Kastakin committed Nov 15, 2024
1 parent 43b6bdd commit 3c52da7
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 18 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# Version v2.0.1beta

## Fixes
* Fix regression in opening file from cli argument ([c39cf5a](https://github.com/Kastakin/PyES/commit/c39cf5a332acac2a4de465872e500d82e0e294d3))
* Solve importing and exporting issues of titration data ([8bc5e03](https://github.com/Kastakin/PyES/commit/8bc5e03ae20c3d293fa1fcd752543d67d033f312))

## Chores
* Formatting and import sorting ([43b6bdd](https://github.com/Kastakin/PyES/commit/43b6bdda8c0871e820a0b1508eeb3c261bab2ed5))


# Version v1.1.3

## Features
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.0beta"
version = "2.0.1beta"
description = ""
authors = ["Lorenzo Castellino <[email protected]>"]
license = "GPLv3"
Expand Down
17 changes: 4 additions & 13 deletions release_text.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,10 @@
# Version v1.1.3

## Features
* Add commands to edit all columns ([7a709ed](https://github.com/Kastakin/PyES/commit/7a709edf0a5c83c3b172933de6e557f67b0b73eb))
* Calculate percentages on the fly for plotting purposes ([ddc04d7](https://github.com/Kastakin/PyES/commit/ddc04d7797c277df9717b15685a5bed684caec06))

## Enhancements
* Use dequeue instead of list for keeping track of concentration of previous points ([b919663](https://github.com/Kastakin/PyES/commit/b919663dd7ebcd712189f1bdcdcf8e86719f629d))
# Version v2.0.1beta

## Fixes
* Update Pillow dependency to avoid vulnerability ([1b72e3c](https://github.com/Kastakin/PyES/commit/1b72e3c00475079db0d03715d7d23ace1fb0fee4))
* Fix regression in opening file from cli argument ([c39cf5a](https://github.com/Kastakin/PyES/commit/c39cf5a332acac2a4de465872e500d82e0e294d3))
* Solve importing and exporting issues of titration data ([8bc5e03](https://github.com/Kastakin/PyES/commit/8bc5e03ae20c3d293fa1fcd752543d67d033f312))

## Chores
* Add missing generated artifacts ([4ddba12](https://github.com/Kastakin/PyES/commit/4ddba12534f8d17b3150912a705e9e1e7ea3b3d0))
* Lock pyinstaller version ([a9151b5](https://github.com/Kastakin/PyES/commit/a9151b5496bf99eaa9ae98e8abcefd5820a33d19))
* Improve reliability of benchmark scripts ([a9c186b](https://github.com/Kastakin/PyES/commit/a9c186b1b6a1ca8cfe303500f7dc69e37588c71d))
* Add generics methods for models ([d0b61c3](https://github.com/Kastakin/PyES/commit/d0b61c335574592ebca45e2b3da1534e51a8f960))
* Formatting and import sorting ([43b6bdd](https://github.com/Kastakin/PyES/commit/43b6bdda8c0871e820a0b1508eeb3c261bab2ed5))


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.0",
"version": "2.0.1",
"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 @@ -109,7 +109,7 @@ def retranslateUi(self, dialogAbout):
QCoreApplication.translate("dialogAbout", "About", None)
)
self.label.setText(
QCoreApplication.translate("dialogAbout", "PyES Version 2.0.0beta", None)
QCoreApplication.translate("dialogAbout", "PyES Version 2.0.1beta", None)
)
self.label_3.setText(
QCoreApplication.translate(
Expand Down
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.0beta</string>
<string>PyES Version 2.0.1beta</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.0beta"
current = "2.0.1beta"

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

0 comments on commit 3c52da7

Please sign in to comment.