Skip to content

Commit 388548e

Browse files
committed
Release 4.1.3: Bug fix for exporting to relative pathnames
1 parent bc1d173 commit 388548e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

vcs_repo_mgr/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
)
112112

113113
# Semi-standard module versioning.
114-
__version__ = '4.1.2'
114+
__version__ = '4.1.3'
115115

116116
USER_CONFIG_FILE = '~/.vcs-repo-mgr.ini'
117117
"""The location of the user-specific configuration file (a string, parsed using :func:`.parse_path()`)."""

vcs_repo_mgr/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@ def test_export(self):
593593
with TemporaryDirectory() as directory:
594594
# Change the current working directory to our temporary directory
595595
# so that we can give a relative pathname to export(). This is a
596-
# regression test for a bug to be fixed in vcs-repo-mgr 4.1.3.
596+
# regression test for a bug that was fixed in vcs-repo-mgr 4.1.3.
597597
os.chdir(directory)
598598
# Initialize a repository object of the parametrized type.
599599
repository = self.get_instance(bare=False, local=os.path.join(directory, 'repo'))

0 commit comments

Comments
 (0)