From 831c4b85138852c07e36da0c6c453eb7ba2e8b62 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Wed, 1 Jun 2022 21:49:26 -0500 Subject: [PATCH 1/2] build(deps): Update libvcs to 0.12.4 (backport hg fix) --- poetry.lock | 10 +++++----- pyproject.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/poetry.lock b/poetry.lock index a24c5580..f1fcb2c2 100644 --- a/poetry.lock +++ b/poetry.lock @@ -255,8 +255,8 @@ PyYAML = ">=3.13,<6" [[package]] name = "libvcs" -version = "0.12.0" -description = "vcs abstraction layer" +version = "0.12.4" +description = "Lite, typed, python library wrapper for git, svn, mercurial, etc." category = "main" optional = false python-versions = ">=3.9,<4.0" @@ -855,7 +855,7 @@ test = [] [metadata] lock-version = "1.1" python-versions = "^3.9" -content-hash = "a8afebc05b467c0d8fc4bc895d3e7e4b32bf045d48c3e59cfbdbac8ab4570764" +content-hash = "8f0618f3f44cd207b9849b89d1bdae012b5ee07fb1947395157d79c7bb0eb313" [metadata.files] alabaster = [ @@ -1007,8 +1007,8 @@ kaptan = [ {file = "kaptan-0.5.12.tar.gz", hash = "sha256:1abd1f56731422fce5af1acc28801677a51e56f5d3c3e8636db761ed143c3dd2"}, ] libvcs = [ - {file = "libvcs-0.12.0-py3-none-any.whl", hash = "sha256:58ae6c8ebfc6c3b70e4ffdc4e4b29ed7ebf0d549014e1faf204ef4477cf559a3"}, - {file = "libvcs-0.12.0.tar.gz", hash = "sha256:5c3f23d34a90241660afc0dd159027e71d8cd359f54523f5ef6540109177d1fe"}, + {file = "libvcs-0.12.4-py3-none-any.whl", hash = "sha256:828a05f67a4156099d7e3b482934ea267444daae5bcd0230f1ab9c1c6d425907"}, + {file = "libvcs-0.12.4.tar.gz", hash = "sha256:05f3253c99a65d48cf5310fe9d202ea27c986abe64535c7305449e7a27fb674c"}, ] livereload = [ {file = "livereload-2.6.3.tar.gz", hash = "sha256:776f2f865e59fde56490a56bcc6773b6917366bce0c267c60ee8aaf1a0959869"}, diff --git a/pyproject.toml b/pyproject.toml index d900cd30..b345c5b5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,7 +47,7 @@ vcspull = 'vcspull:cli.cli' python = "^3.9" click = "~8" kaptan = "*" -libvcs = "~0.12.0" +libvcs = "~0.12.4" colorama = ">=0.3.9" [tool.poetry.dev-dependencies] From 2506ea4f9ac531228e1061d7d478c65da9a93e49 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Wed, 1 Jun 2022 21:50:45 -0500 Subject: [PATCH 2/2] Tag v0.12.3 --- CHANGES | 6 ++++++ pyproject.toml | 2 +- vcspull/__about__.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index b993012d..8fc903b9 100644 --- a/CHANGES +++ b/CHANGES @@ -19,6 +19,12 @@ $ pipx install --suffix=@next 'vcspull' --pip-args '\--pre' --force - _Add your latest changes from PRs here_ +## vcspull 1.12.3 (2022-06-01) + +### Bug fixes + +- Fix cloning of mercurial repositories (backported fix from libvcs 0.13.x) + ## vcspull 1.12.2 (2022-05-15) ### Packaging diff --git a/pyproject.toml b/pyproject.toml index b345c5b5..123ee6bc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "vcspull" -version = "1.12.2" +version = "1.12.3" description = "Manage and sync multiple git, mercurial, and svn repos" license = "MIT" authors = ["Tony Narlock "] diff --git a/vcspull/__about__.py b/vcspull/__about__.py index 6fff1489..8d743dad 100644 --- a/vcspull/__about__.py +++ b/vcspull/__about__.py @@ -1,7 +1,7 @@ __title__ = "vcspull" __package_name__ = "vcspull" __description__ = "Manage and sync multiple git, mercurial, and svn repos" -__version__ = "1.12.2" +__version__ = "1.12.3" __author__ = "Tony Narlock" __github__ = "https://github.com/vcs-python/vcspull" __docs__ = "https://vcspull.git-pull.com"