diff --git a/CHANGES b/CHANGES index bfd51c8..668a302 100644 --- a/CHANGES +++ b/CHANGES @@ -15,12 +15,14 @@ $ pipx install --suffix=@next g --pip-args '\--pre' --force // Usage: g@next --help ``` -## g 0.0.5 (unreleased) +## g 0.0.6 (unreleased) - _Notes on upcoming releases will be added here_ +## g 0.0.5 (2024-06-08) + ### Fixes - Fix `g` when running outside of a VCS directory (#24) diff --git a/pyproject.toml b/pyproject.toml index fcb94d9..b94abcd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "g" -version = "0.0.4" +version = "0.0.5" description = "cli command to easily sync current directory" license = "MIT" authors = ["Tony Narlock "] diff --git a/src/g/__about__.py b/src/g/__about__.py index 23f6d72..9ed0d52 100644 --- a/src/g/__about__.py +++ b/src/g/__about__.py @@ -3,7 +3,7 @@ __title__ = "g" __package_name__ = "g" __description__ = "CLI alias for your current directory's VCS command: git, svn, hg" -__version__ = "0.0.4" +__version__ = "0.0.5" __author__ = "Tony Narlock" __github__ = "https://github.com/vcs-python/g" __docs__ = "https://g.git-pull.com"