From f13ec58044e1302064f0aedc4fa6b89692080b8e Mon Sep 17 00:00:00 2001 From: mxmlnkn Date: Tue, 21 Dec 2021 00:39:00 +0100 Subject: [PATCH] [version] Bump version to 0.9.3 --- CHANGELOG.md | 7 +++++++ ratarmount.py | 2 +- setup.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 87b52eb0..465f2211 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,11 @@ +# Version 0.9.3 built on 2021-12-21 + + - Fix mounting of TAR fails if there are special characters like '#' in the path. + - Fix recursive mounting of simple compressed files (file.bz2) inside TAR. + - Fix file objects being returned by SQLiteIndexedTar not being independent from each other + because of the shared underlying file object. + # Version 0.9.2 built on 2021-11-28 - Fix StenciledFile accidentally throwing an exception when accessing empty files. diff --git a/ratarmount.py b/ratarmount.py index c965dfc7..c7ac9f40 100755 --- a/ratarmount.py +++ b/ratarmount.py @@ -63,7 +63,7 @@ import zipfile -__version__ = '0.9.2' +__version__ = '0.9.3' parallelization = 1 diff --git a/setup.py b/setup.py index c2c34768..71507acc 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name = 'ratarmount', - version = '0.9.2', + version = '0.9.3', description = 'Random Access Read-Only Tar Mount', url = 'https://github.com/mxmlnkn/ratarmount',