From cdc0c303922f3e9d769619a0b0d250acb1a64025 Mon Sep 17 00:00:00 2001 From: Peter Odding Date: Mon, 3 Jul 2017 00:29:47 +0200 Subject: [PATCH] Release 1.0: Major rewrite (named remotes, selective pushing, init support, etc) Refer to 8a23b9d17bd64052c788d935c05fdb830f19c725 for a description of changes in this release. --- vcs_repo_mgr/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vcs_repo_mgr/__init__.py b/vcs_repo_mgr/__init__.py index 95cade7..c4edeae 100644 --- a/vcs_repo_mgr/__init__.py +++ b/vcs_repo_mgr/__init__.py @@ -1,7 +1,7 @@ # Version control system repository manager. # # Author: Peter Odding -# Last Change: July 2, 2017 +# Last Change: July 3, 2017 # URL: https://github.com/xolox/python-vcs-repo-mgr """ @@ -110,7 +110,7 @@ ) # Semi-standard module versioning. -__version__ = '0.34' +__version__ = '1.0' USER_CONFIG_FILE = '~/.vcs-repo-mgr.ini' """The location of the user-specific configuration file (a string, parsed using :func:`.parse_path()`)."""