From 44d2a984c291ae0674df0fceb5ab8a353101d7db Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Tue, 18 Jun 2024 08:01:41 -0500 Subject: [PATCH] Tag v1.31.0 (AWS CodeCommit support) --- CHANGES | 4 +++- pyproject.toml | 2 +- src/vcspull/__about__.py | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 62c67dd8..369d6e7c 100644 --- a/CHANGES +++ b/CHANGES @@ -15,12 +15,14 @@ $ pipx install --suffix=@next 'vcspull' --pip-args '\--pre' --force // Usage: vcspull@next sync [config] ``` -## vcspull v1.31.x (unreleased) +## vcspull v1.32.x (unreleased) - _Notes on upcoming releases will be added here_ +## vcspull v1.31.0 (2024-06-18) + ### Breaking changes - libvcs: 0.29.0 -> 0.30.1 (#449, #450) diff --git a/pyproject.toml b/pyproject.toml index 36417fc6..bf4ca913 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "vcspull" -version = "1.30.0" +version = "1.31.0" description = "Manage and sync multiple git, mercurial, and svn repos" license = "MIT" authors = ["Tony Narlock "] diff --git a/src/vcspull/__about__.py b/src/vcspull/__about__.py index d3b0a282..d39330d5 100644 --- a/src/vcspull/__about__.py +++ b/src/vcspull/__about__.py @@ -3,7 +3,7 @@ __title__ = "vcspull" __package_name__ = "vcspull" __description__ = "Manage and sync multiple git, mercurial, and svn repos" -__version__ = "1.30.0" +__version__ = "1.31.0" __author__ = "Tony Narlock" __github__ = "https://github.com/vcs-python/vcspull" __docs__ = "https://vcspull.git-pull.com"