diff --git a/README.md b/README.md index 71a310b9..29b3577e 100644 --- a/README.md +++ b/README.md @@ -229,9 +229,9 @@ the changes to the `main` branch (or any other branch that satisfies the `on.push.branches` condition in the workflow). ```bash -git commit -am "cicd: bump version to 0.0.33 #38." -git tag -a v0.0.33 -m "Release version 0.0.33" -git push && git push origin v0.0.33 +git commit -am "cicd: bump version to 0.0.34 #38." +git tag -a v0.0.34 -m "Release version 0.0.34" +git push && git push origin v0.0.34 ``` Then the workflow will be triggered, and the package will be published to PyPI. diff --git a/omnivault/utils/reproducibility/git_utils.py b/omnivault/utils/reproducibility/git_utils.py index 75a4bb33..c970247d 100644 --- a/omnivault/utils/reproducibility/git_utils.py +++ b/omnivault/utils/reproducibility/git_utils.py @@ -9,6 +9,7 @@ __all__ = ["check_git_status", "get_git_commit_hash", "commit_changes", "push_changes"] + def check_git_status(working_dir: str | None = None) -> bool: """ Check the Git status of the working directory. If there are untracked or diff --git a/pyproject.toml b/pyproject.toml index f82a07f2..c80ec50a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "omniverse" -version = "0.0.33" +version = "0.0.34" description = "A collection of code for Omniverse." authors = [{name="GAO Hongnan", email="hongnangao@gmail.com"}] readme = "README.md"