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/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 diff --git a/pyproject.toml b/pyproject.toml index a8a0d7d4..d900cd30 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" +version = "1.12.2" +description = "Manage and sync multiple git, mercurial, and svn repos" license = "MIT" authors = ["Tony Narlock "] classifiers = [ @@ -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" diff --git a/vcspull/__about__.py b/vcspull/__about__.py index 3b832625..6fff1489 100644 --- a/vcspull/__about__.py +++ b/vcspull/__about__.py @@ -1,7 +1,7 @@ __title__ = "vcspull" __package_name__ = "vcspull" -__description__ = "Bulk sync git, mercurial, and svn projects" -__version__ = "1.12.1" +__description__ = "Manage and sync multiple git, mercurial, and svn repos" +__version__ = "1.12.2" __author__ = "Tony Narlock" __github__ = "https://github.com/vcs-python/vcspull" __docs__ = "https://vcspull.git-pull.com"