Skip to content

Commit ff379e0

Browse files
committed
Bump version to v2.0.0
1 parent 917c29a commit ff379e0

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212

1313
steps:
1414
- uses: actions/checkout@v3
15+
- uses: tlambert03/setup-qt-libs@v1
1516
- uses: actions/setup-python@v4
1617
with:
1718
python-version: "3.11"
@@ -28,7 +29,6 @@ jobs:
2829
id: wheel-file-path
2930
run: echo path=$(ls dist/*.whl) >> $GITHUB_OUTPUT
3031

31-
- uses: tlambert03/setup-qt-libs@v1
3232

3333
- name: Test build package
3434
run: |

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 = "PyQtDarkTheme"
3-
version = "1.2.1"
3+
version = "2.0.0"
44
description = "Flat dark theme for PySide and PyQt."
55
authors = ["Yunosuke Ohsugi <[email protected]>"]
66
license = "MIT"

qdarktheme/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
4141
"""
4242
# Version of PyQtDarkTheme
43-
__version__ = "1.2.1"
43+
__version__ = "2.0.0"
4444

4545
from qdarktheme._main import enable_hi_dpi, setup_theme, stop_sync
4646
from qdarktheme._style_loader import clear_cache, get_themes, load_palette, load_stylesheet

tools/check_build_package.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ def _parse_args() -> argparse.Namespace:
2222
def _test_qdarktheme() -> None:
2323
for theme in qdarktheme.get_themes():
2424
qdarktheme.load_stylesheet(theme)
25-
qdarktheme.load_palette(theme)
2625

2726

2827
def _main() -> None:

0 commit comments

Comments
 (0)