Skip to content

Commit

Permalink
Bump version to v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
5yutan5 committed Dec 12, 2022
1 parent 917c29a commit ff379e0
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:

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

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

- name: Test build package
run: |
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 = "PyQtDarkTheme"
version = "1.2.1"
version = "2.0.0"
description = "Flat dark theme for PySide and PyQt."
authors = ["Yunosuke Ohsugi <63651161+5yutan5@users.noreply.github.com>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion qdarktheme/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"""
# Version of PyQtDarkTheme
__version__ = "1.2.1"
__version__ = "2.0.0"

from qdarktheme._main import enable_hi_dpi, setup_theme, stop_sync
from qdarktheme._style_loader import clear_cache, get_themes, load_palette, load_stylesheet
1 change: 0 additions & 1 deletion tools/check_build_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ def _parse_args() -> argparse.Namespace:
def _test_qdarktheme() -> None:
for theme in qdarktheme.get_themes():
qdarktheme.load_stylesheet(theme)
qdarktheme.load_palette(theme)


def _main() -> None:
Expand Down

0 comments on commit ff379e0

Please sign in to comment.