Skip to content

Commit

Permalink
cicd: bump version to 0.0.34 #38.
Browse files Browse the repository at this point in the history
  • Loading branch information
gao-hongnan committed Jun 17, 2024
1 parent 9fab97a commit 5c03650
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 1 addition & 0 deletions omnivault/utils/reproducibility/git_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 5c03650

Please sign in to comment.