diff options
-rw-r--r-- | HISTORY.rst | 6 | ||||
-rw-r--r-- | dotfiles/core.py | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/HISTORY.rst b/HISTORY.rst index 9f09407..73ca836 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,12 @@ History ------- +0.6.3 ++++++ + +* Prevent adding toplevel package directories (bugfix) +* Only replace existing dotfiles on remove operation (bugfix) + 0.6.2 +++++ diff --git a/dotfiles/core.py b/dotfiles/core.py index 078e9b6..7daf316 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.2' +__version__ = '0.6.3' __author__ = 'Jon Bernard' __license__ = 'ISC' |