Skip to content

Commit

Permalink
[version] Bump version to 0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmlnkn committed Dec 20, 2021
1 parent 2025487 commit f13ec58
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion ratarmount.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
import zipfile


__version__ = '0.9.2'
__version__ = '0.9.3'


parallelization = 1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit f13ec58

Please sign in to comment.