Skip to content

Commit

Permalink
[version] Bump ratarmount version to 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmlnkn committed Feb 19, 2023
1 parent f488cbb commit e61800c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 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.13.0 built on 2023-02-19

- (ratarmountcore 0.5.0) Use XDG_CACHE_HOME according to FreeDesktop as default fallback
when the archive folder is not writable.
- (ratarmountcore 0.5.0) Create an SQLite index file for zip archives to speed up metadata lookup.
- (ratarmountcore 0.5.0) Fix issue with folders for mounted zip files not being traversed with find.

# Version 0.12.0 built on 2022-11-13

- Add --recursion-depth argument for more fine-grained recursion control.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ They require no installation and can be simply executed like a portable executab
If you want to install it, you can simply copy it into any of the folders listed in your `PATH`.

```bash
wget 'https://github.com/mxmlnkn/ratarmount/releases/download/v0.10.0/ratarmount-manylinux2014_x86_64.AppImage'
wget 'https://github.com/mxmlnkn/ratarmount/releases/download/v0.13.0/ratarmount-0.13.0-manylinux2014_x86_64.AppImage'
chmod u+x 'ratarmount-manylinux2014_x86_64.AppImage'
./ratarmount-manylinux2014_x86_64.AppImage --help # Simple test run
sudo cp ratarmount-manylinux2014_x86_64.AppImage /usr/local/bin/ratarmount # Example installation
Expand Down
2 changes: 1 addition & 1 deletion ratarmount.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
)


__version__ = '0.12.0'
__version__ = '0.13.0'


def hasNonEmptySupport() -> bool:
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = ratarmount
version = 0.12.0
version = 0.13.0

description = Random Access Read-Only Tar Mount
url = https://github.com/mxmlnkn/ratarmount
Expand Down Expand Up @@ -32,7 +32,7 @@ long_description_content_type = text/markdown
[options]
py_modules = ratarmount
install_requires =
ratarmountcore ~= 0.4.0
ratarmountcore ~= 0.5.0
fusepy
indexed_bzip2 >= 1.3.1, < 2.0
indexed_gzip >= 1.6.3, < 2.0
Expand Down

0 comments on commit e61800c

Please sign in to comment.