diff --git a/CHANGELOG.md b/CHANGELOG.md index 714a9f77..ec4e5dca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ +# Version 0.6.1 built on 2020-10-02 + + - Fix broken CLI and add test for it. + # Version 0.6.0 built on 2020-10-02 - Fix bug with filename encoding on some special characters like accented vowels or umlauts. diff --git a/ratarmount.py b/ratarmount.py index d4e721cf..28a18f03 100755 --- a/ratarmount.py +++ b/ratarmount.py @@ -36,7 +36,7 @@ import fuse -__version__ = '0.6.0' +__version__ = '0.6.1' printDebug = 1 diff --git a/setup.py b/setup.py index 4fe11c34..8a967abd 100755 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name = 'ratarmount', - version = '0.6.0', + version = '0.6.1', description = 'Random Access Read-Only Tar Mount', url = 'https://github.com/mxmlnkn/ratarmount',