diff --git a/CHANGES.rst b/CHANGES.rst index e570c6b..0706066 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,14 @@ Changelog ========= +Version 0.8.0 - +--------------- +- Set to True the default value for `check_exists` in `Crumb.ls` function. + I don't think anybody is interested in non-existing paths. + +- Now it is possible to set a non-open item in a Crumb, i.e., I can replace the value for an already set crumb argument. + + Version 0.7.0 - 0.7.5 --------------------- - Refactoring of how Crumb works, now using string.Formatter. diff --git a/hansel/version.py b/hansel/version.py index 9278f54..7487400 100755 --- a/hansel/version.py +++ b/hansel/version.py @@ -3,5 +3,5 @@ Unique version information place """ -__version__ = "0.7.5" +__version__ = "0.8.0" VERSION = tuple(int(x) for x in __version__.split("."))