Skip to content

Commit

Permalink
[chore] Rollback due to incorrect CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Kastakin committed Nov 17, 2022
1 parent 78ec1ee commit 707a4e4
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/release-multi-os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v3
- name: Create Release # Creates the release, assets will be added after building
id: create_release
uses: ncipollo/create-release@v1
uses: ncipollo/release-action@v1.11.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down Expand Up @@ -127,4 +127,3 @@ jobs:
tag: ${{ github.ref }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

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 = "0.4.2"
version = "0.4.1"
description = ""
authors = ["Lorenzo Castellino <castellino96@gmail.com>"]
license = "GPLv3"
Expand Down
4 changes: 2 additions & 2 deletions src/build/settings/base.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"app_name": "PyES",
"author": "Lorenzo Castellino",
"main_module": "src/main/python/main.py",
"version": "0.4.2",
"version": "0.4.1",
"extra_pyinstaller_args": [
"--exclude-module",
"PySide6.QtQml",
Expand All @@ -13,4 +13,4 @@
"--exclude-module",
"_bootlocale"
]
}
}
2 changes: 1 addition & 1 deletion src/main/python/ui/PyES_about.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def retranslateUi(self, dialogAbout):
QCoreApplication.translate("dialogAbout", "About", None)
)
self.label.setText(
QCoreApplication.translate("dialogAbout", "PyES Version 0.4.2", None)
QCoreApplication.translate("dialogAbout", "PyES Version 0.4.1", None)
)
self.label_3.setText(
QCoreApplication.translate(
Expand Down
2 changes: 1 addition & 1 deletion src/main/python/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 0.4.2</string>
<string>PyES Version 0.4.1</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 = "0.4.2"
current = "0.4.1"

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

0 comments on commit 707a4e4

Please sign in to comment.