From b3fa1a221bb29b572c56668067a00316f4ffd32a Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sun, 15 May 2022 13:40:40 -0500 Subject: [PATCH 1/4] build(metadata): Update package descriptions --- pyproject.toml | 2 +- vcspull/__about__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a8a0d7d4..ddd8e9e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "vcspull" version = "1.12.1" -description = "Bulk sync git, mercurial, and svn projects" +description = "Manage and sync multiple git, mercurial, and svn repos" license = "MIT" authors = ["Tony Narlock "] classifiers = [ diff --git a/vcspull/__about__.py b/vcspull/__about__.py index 3b832625..08f918d7 100644 --- a/vcspull/__about__.py +++ b/vcspull/__about__.py @@ -1,6 +1,6 @@ __title__ = "vcspull" __package_name__ = "vcspull" -__description__ = "Bulk sync git, mercurial, and svn projects" +__description__ = "Manage and sync multiple git, mercurial, and svn repos" __version__ = "1.12.1" __author__ = "Tony Narlock" __github__ = "https://github.com/vcs-python/vcspull" From 04293397852656f29982c0c764e9d0289648a31a Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sun, 15 May 2022 13:41:10 -0500 Subject: [PATCH 2/4] docs(README): Update copy, mention mu-repo --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 051217ce..082a769d 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # $ vcspull · [![Python Package](https://img.shields.io/pypi/v/vcspull.svg)](https://pypi.org/project/vcspull/) [![License](https://img.shields.io/github/license/vcs-python/vcspull.svg)](https://github.com/vcs-python/vcspull/blob/master/LICENSE) [![Code Coverage](https://codecov.io/gh/vcs-python/vcspull/branch/master/graph/badge.svg)](https://codecov.io/gh/vcs-python/vcspull) -Synchronize repos in bulk from JSON or YAML file. Compare to -[myrepos](http://myrepos.branchable.com/). Built on [libvcs](https://github.com/vcs-python/libvcs) +Manage and sync multiple git, svn, and mercurial repos via JSON or YAML file. Compare to +[myrepos], [mu-repo]. Built on [libvcs](https://github.com/vcs-python/libvcs). Great if you use the same repos at the same locations across multiple machines or want to clone / update a pattern of repos without having to @@ -18,6 +18,9 @@ machines or want to clone / update a pattern of repos without having to See the [documentation](https://vcspull.git-pull.com/), [configuration](https://vcspull.git-pull.com/configuration/) examples, and [config generators](https://vcspull.git-pull.com/configuration/generation.html). +[myrepos]: http://myrepos.branchable.com/ +[mu-repo]: http://fabioz.github.io/mu-repo/ + # how to ## install From af673ad783c80e45b7f34aef96996062fb1fd066 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sun, 15 May 2022 13:53:43 -0500 Subject: [PATCH 3/4] build(metadata): Add tags --- pyproject.toml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ddd8e9e6..35910150 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,7 +25,12 @@ include = [ { path = "tests", format = "sdist" } ] readme = 'README.md' -keywords = ["vcspull", "git", "vcs", "json", "yaml"] +keywords = [ + "vcspull", + "vcs", "git", "svn", "subversion", "hg", "mercurial", + "manage", "manager", "sync", "fetcher", "updater", + "json", "yaml" +] homepage = "https://vcspull.git-pull.com" From 20f8fd8b3891b1de587a1f1094e31cec4ca67f5d Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sun, 15 May 2022 13:57:50 -0500 Subject: [PATCH 4/4] Tag v1.12.2 --- CHANGES | 10 ++++++++++ pyproject.toml | 2 +- vcspull/__about__.py | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index fb11ff6d..b993012d 100644 --- a/CHANGES +++ b/CHANGES @@ -19,6 +19,16 @@ $ pipx install --suffix=@next 'vcspull' --pip-args '\--pre' --force - _Add your latest changes from PRs here_ +## vcspull 1.12.2 (2022-05-15) + +### Packaging + +- Update tags and description + +### Documentation + +- Update README + ## vcspull 1.12.1 (2022-05-02) ### Bug fixes diff --git a/pyproject.toml b/pyproject.toml index 35910150..d900cd30 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "vcspull" -version = "1.12.1" +version = "1.12.2" 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 08f918d7..6fff1489 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.1" +__version__ = "1.12.2" __author__ = "Tony Narlock" __github__ = "https://github.com/vcs-python/vcspull" __docs__ = "https://vcspull.git-pull.com"