From bdc4e6fb027bc52a52dff753bdb8faaa94beba6b Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sat, 17 Feb 2024 05:21:01 -0600 Subject: [PATCH] Tag v0.28.2 (bug fix for Git.rev_list, CI bump) --- CHANGES | 2 ++ pyproject.toml | 2 +- src/libvcs/__about__.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) 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"