Skip to content

Commit

Permalink
[version] Bump ratarmount version to 0.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmlnkn committed Feb 23, 2024
1 parent 3a9c2ab commit 69f5106
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@

# Version 0.14.1 built on 2024-02-23

- Fix `AttributeError: module 'fuse' has no attribute 'errno'`.
- Fix `--commit-overlay`, which did not add newly created empty folders to TARs.
- Do not ask for confirmation if there is nothing to commit when using `--commit-overlay`.
- Improve unmounting with `ratarmount -u`, especially with the AppImage.
- (ratarmountcore 0.6.3) Properly close opened file objects in mount sources.
- (ratarmountcore 0.6.3) Fix `--disable-union-mount`, which returned an I/O error.
- (ratarmountcore 0.6.3) Fix that `--use-backend=indexed_gzip` still did use `rapidgzip`.
It only worked when both were specified.
- (ratarmountcore 0.6.3) Fix detection of self-extracting RAR files.
- (ratarmountcore 0.6.3) Improve the error message when a file cannot be read because of a missing dependency.
- (ratarmountcore 0.6.3) Improve debug message when the index does not yet contain a gzip index.
- (ratarmountcore 0.6.2) Fix faulty seek forward for files opened via `RarMountSource` when whence is not `io.SEEK_SET`.
- (ratarmountcore 0.6.1) Skip data offset collection for zip files because it takes too long and is unused.

# Version 0.14.0 built on 2023-09-03

- Add `--disable-union-mount` option to present multiple archives in subfolders under the mount point.
Expand Down
2 changes: 1 addition & 1 deletion ratarmount.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
)


__version__ = '0.14.0'
__version__ = '0.14.1'


def hasNonEmptySupport() -> bool:
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = ratarmount
version = 0.14.0
version = 0.14.1

description = Random Access Read-Only Tar Mount
url = https://github.com/mxmlnkn/ratarmount
Expand Down

0 comments on commit 69f5106

Please sign in to comment.