From ca16c793a0b9d6d124d74070263884a9de90f668 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Fri, 22 Nov 2024 13:23:32 -0600 Subject: [PATCH] Tag v0.34.0 --- CHANGES | 6 +++++- pyproject.toml | 2 +- src/libvcs/__about__.py | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 43a0cc0f..dd46fae5 100644 --- a/CHANGES +++ b/CHANGES @@ -9,12 +9,16 @@ To install the unreleased libvcs version, see $ pip install --user --upgrade --pre libvcs ``` -## libvcs 0.34.x (unreleased) +## libvcs 0.35.x (unreleased) - _Notes on upcoming releases will be added here_ +## libvcs 0.34.0 (2024-11-22) + +_Maintenance only, no bug fixes, or new features_ + ### Development #### Project and package management: poetry to uv (#479) diff --git a/pyproject.toml b/pyproject.toml index 84d0061a..0fe09373 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "libvcs" -version = "0.33.0" +version = "0.34.0" description = "Lite, typed, python utilities for Git, SVN, Mercurial, etc." requires-python = ">=3.9,<4.0" authors = [ diff --git a/src/libvcs/__about__.py b/src/libvcs/__about__.py index f876e03d..01264a1f 100644 --- a/src/libvcs/__about__.py +++ b/src/libvcs/__about__.py @@ -3,7 +3,7 @@ __title__ = "libvcs" __package_name__ = "libvcs" __description__ = "Lite, typed, python utilities for Git, SVN, Mercurial, etc." -__version__ = "0.33.0" +__version__ = "0.34.0" __author__ = "Tony Narlock" __github__ = "https://github.com/vcs-python/libvcs" __docs__ = "https://libvcs.git-pull.com"