diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d329c39..714a9f77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ -# Version 0.5.0 built on 2019-05-09 +# Version 0.6.0 built on 2020-10-02 + + - Fix bug with filename encoding on some special characters like accented vowels or umlauts. + - Add support to mount simple .gz or .bz2 files, which are not compressed TARs. + - Fix number of hardlinks being always shown as 2. Changed to show 1. + - Fix wrong size reporting when index size has changed. + - Fix blocksize and therefore `du` results always showing 0. + - Add command line option to turn on modification timestamp checking. + - Add command to mount recursive tars at folders where the .tar extension is stripped. + - Fix recursion limit hit when mounting a TAR with more than or equal 1000 contained TARs. + +# Version 0.5.0 built on 2020-05-09 - Add support for sparse files inside the TAR. - Automatically detect if the TAR file has grown since the last index creation. @@ -11,7 +22,7 @@ - Detect changes in TAR files and recreate the index if so. - Remove support for old non-SQLite index backends. -# Version 0.4.1 built on 2019-04-10 +# Version 0.4.1 built on 2020-04-10 - Add option for gzip index seek point spacing to CLI. - Fix absolute symbolic links being stripped of their leading '/'. diff --git a/ratarmount.py b/ratarmount.py index bcf29a6f..236b5928 100755 --- a/ratarmount.py +++ b/ratarmount.py @@ -36,7 +36,7 @@ import fuse -__version__ = '0.5.0' +__version__ = '0.6.0' printDebug = 1 diff --git a/setup.py b/setup.py index 72b0fe9f..4fe11c34 100755 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name = 'ratarmount', - version = '0.5.0', + version = '0.6.0', description = 'Random Access Read-Only Tar Mount', url = 'https://github.com/mxmlnkn/ratarmount',