Skip to content

Commit

Permalink
[version] Bump ratarmount version to 0.14.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmlnkn committed Apr 6, 2024
1 parent fb863a6 commit 086a1fa
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@

# Version 0.14.2 built on 2024-04-06

- Do not check mount point because of faulty `os.path.ismount`, simply try fusermount.
- Avoid total I/O hang when lazy-mounting a folder with archives onto itself
- (ratarmountcore 0.6.4) Return a valid file info and file version count for `/`.
- (ratarmountcore 0.6.4) Make the original archive viewable as an older file version when using `AutoMountLayer`.
- (ratarmountcore 0.6.4) Resolve symbolic links pointing outside the source folder given to `FolderMountSource` to not break them.
- (ratarmountcore 0.6.4) Do not return a valid `FileInfo` for invalid paths such as `../..`.
- (ratarmountcore 0.6.4) Make `--index-minimum-file-count` work for the TAR backend.
- (ratarmountcore 0.6.5) The index should not be created for very small archives.
- (ratarmountcore 0.6.5) Root file info userdata was not initialized correctly.
- (ratarmountcore 0.6.5) Index validation did fail for TAR entries with more than 2 metadata blocks.
- (ratarmountcore 0.6.5) Do not check for folder consistency because parent folders get automatically added to the index.
- (ratarmountcore 0.6.5) Move `_createFileInfo` out of `MountSource` class to fix "protected-access" warning.
- (ratarmountcore 0.6.5) Joined files (`a.001`, `a.002`) did not work because of an accidentally shared list.
- (ratarmountcore 0.6.5) Do not check file header for zip, only for the footer, to detect self-extracting archives.

# Version 0.14.1 built on 2024-02-23

- Fix `AttributeError: module 'fuse' has no attribute 'errno'`.
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.1'
__version__ = '0.14.2'


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.1
version = 0.14.2

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

0 comments on commit 086a1fa

Please sign in to comment.