From e4f0d76c501c4385698db0d991bf8e294666fcfa Mon Sep 17 00:00:00 2001 From: awwaawwa <8493196+awwaawwa@users.noreply.github.com> Date: Fri, 24 Jan 2025 19:44:29 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=94=A7=20chore(version):=20bump=20pro?= =?UTF-8?q?ject=20version=20to=200.1.0.rc0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - update pyproject.toml with new version number - update __init__.py version - update main.py version - prepare for release candidate --- pyproject.toml | 4 ++-- yadt/__init__.py | 2 +- yadt/main.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e5076d94..b61bd902 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "yadt" -version = "0.0.2.dev1" +version = "0.1.0.rc0" description = "Yet Another Document Translator" license = "AGPL-3.0" readme = "README.md" @@ -55,7 +55,7 @@ dev = [ ] [bumpver] -current_version = "0.0.2.dev1" +current_version = "0.1.0.rc0" version_pattern = "MAJOR.MINOR.PATCH[.PYTAGNUM]" [bumpver.file_patterns] diff --git a/yadt/__init__.py b/yadt/__init__.py index b27b235e..11a1cbe0 100644 --- a/yadt/__init__.py +++ b/yadt/__init__.py @@ -1 +1 @@ -__version__ = "0.0.2.dev1" +__version__ = "0.1.0.rc0" diff --git a/yadt/main.py b/yadt/main.py index 5dd3b550..7967e04b 100644 --- a/yadt/main.py +++ b/yadt/main.py @@ -14,7 +14,7 @@ from yadt.translation_config import TranslationConfig # noqa: E402 logger = logging.getLogger(__name__) -__version__ = "0.0.2.dev1" +__version__ = "0.1.0.rc0" def create_cache_folder(): try: From b3dbae1301d2ebb053813ea95d43d4a294d09b5c Mon Sep 17 00:00:00 2001 From: awwaawwa <8493196+awwaawwa@users.noreply.github.com> Date: Fri, 24 Jan 2025 19:46:29 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=91=B7=20ci(github):=20configure=20ba?= =?UTF-8?q?sic=20github=20actions=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - add test workflow for push and pull request events - trigger workflow on main branch - set up initial CI pipeline structure --- .github/workflows/test.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2bc4539a..238a6b63 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,7 +2,6 @@ name: Run Tests 🧪 on: push: - branches: ["main"] pull_request: branches: ["main"]