diff options
author | Jon Bernard <jbernard@tuxion.com> | 2013-11-09 18:09:26 -0500 |
---|---|---|
committer | Jon Bernard <jbernard@tuxion.com> | 2013-11-09 18:09:26 -0500 |
commit | 41d2a5e91716ec6e6fa45984f8f6982c892a390c (patch) | |
tree | 2cd4896596a3eef345b967aff45a7e37233d87dd | |
parent | 5bbf48d25a86711d7cae565787479f58a016ef5a (diff) | |
download | dotfiles-41d2a5e91716ec6e6fa45984f8f6982c892a390c.tar.gz dotfiles-41d2a5e91716ec6e6fa45984f8f6982c892a390c.tar.bz2 dotfiles-41d2a5e91716ec6e6fa45984f8f6982c892a390c.zip |
Update history and bump version numberv0.6.2
-rw-r--r-- | HISTORY.rst | 7 | ||||
-rw-r--r-- | dotfiles/core.py | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/HISTORY.rst b/HISTORY.rst index a38ab88..a89266b 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,13 @@ History ------- +0.6.2 ++++++ + +Fix single-sync in python 3.x (map is lazy) +Fix sync --force regression +Fix unit tests to exit with the correct return code + 0.6.1 +++++ diff --git a/dotfiles/core.py b/dotfiles/core.py index 35436a7..14ef8e0 100644 --- a/dotfiles/core.py +++ b/dotfiles/core.py @@ -16,7 +16,7 @@ from dotfiles.utils import realpath_expanduser, is_link_to from dotfiles.compat import symlink -__version__ = '0.6.1' +__version__ = '0.6.2' __author__ = 'Jon Bernard' __license__ = 'ISC' |