diff --git a/CHANGES b/CHANGES index 44c8aea5..0fe71880 100644 --- a/CHANGES +++ b/CHANGES @@ -15,6 +15,8 @@ $ pip install --user --upgrade --pre libvcs +## libvcs 0.28.2 (2024-02-17) + ### Fixes - `Git.rev_list`: Fix argument expansion (#455) diff --git a/pyproject.toml b/pyproject.toml index bbca4806..e4b3f1c3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "libvcs" -version = "0.28.1" +version = "0.28.2" description = "Lite, typed, python utilities for Git, SVN, Mercurial, etc." license = "MIT" authors = ["Tony Narlock "] diff --git a/src/libvcs/__about__.py b/src/libvcs/__about__.py index af0914c4..7f3ea043 100644 --- a/src/libvcs/__about__.py +++ b/src/libvcs/__about__.py @@ -2,7 +2,7 @@ __title__ = "libvcs" __package_name__ = "libvcs" __description__ = "Lite, typed, python utilities for Git, SVN, Mercurial, etc." -__version__ = "0.28.1" +__version__ = "0.28.2" __author__ = "Tony Narlock" __github__ = "https://github.com/vcs-python/libvcs" __docs__ = "https://libvcs.git-pull.com"