Skip to content

Commit

Permalink
🔧 chore(version): bump version to 0.1.0.rc1
Browse files Browse the repository at this point in the history
- update version in pyproject.toml
- update version in __init__.py
- update version in main.py
- increment release candidate version
  • Loading branch information
awwaawwa committed Jan 24, 2025
1 parent 4fd1b5b commit c427f14
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "yadt"
version = "0.1.0.rc0"
version = "0.1.0.rc1"
description = "Yet Another Document Translator"
license = "AGPL-3.0"
readme = "README.md"
Expand Down Expand Up @@ -55,7 +55,7 @@ dev = [
]

[bumpver]
current_version = "0.1.0.rc0"
current_version = "0.1.0.rc1"
version_pattern = "MAJOR.MINOR.PATCH[.PYTAGNUM]"

[bumpver.file_patterns]
Expand Down
2 changes: 1 addition & 1 deletion yadt/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.0.rc0"
__version__ = "0.1.0.rc1"
2 changes: 1 addition & 1 deletion yadt/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from yadt.translation_config import TranslationConfig # noqa: E402

logger = logging.getLogger(__name__)
__version__ = "0.1.0.rc0"
__version__ = "0.1.0.rc1"

def create_cache_folder():
try:
Expand Down

0 comments on commit c427f14

Please sign in to comment.