Skip to content

Commit

Permalink
[version] Bump ratarmount version to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmlnkn committed Nov 1, 2024
1 parent 58dac06 commit da4d2e4
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 5 deletions.
44 changes: 44 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,48 @@

# Version 1.0.0 built on 2024-11-01

Semantic versioning of GUIs and CLIs is not easy to define.
The simplest GUI usage has not changed since the first version and even the index file format has been mostly compatible since version 0.2.0 and there is a lot of code for version checking.
Based on the [semver](https://semver.org/) FAQ, the 1.0.0. release should probably have been a long time ago.
Here it is now!

## Features

- Bundle modified fusepy in order to add libfuse3 support in case only that one is installed.
Contributions to the [mfusepy](https://github.com/mxmlnkn/mfusepy) fork would be welcome!
- Add message for first time users to show the result mount point.
- (ratarmountcore 0.8.0) Add fsspec implementation and register it as ratar://.
- (ratarmountcore 0.8.0) Add support for new formats: SquashFS, Git, FAT12, FAT16, FAT32.
- (ratarmountcore 0.8.0) Add support for fsspec backends. Archives and even index files can now be specified via URIs:
dropbox://, ftp://, git://, github://, http://, https://, ipfs://, ipns://, s3://, ssh://, sftp://, smb://, webdav://.
- (ratarmountcore 0.8.0) Add support for remote and compressed index files. Ratarmount will automatically look for
index files with .gz and other common extensions and extracts these into `/tmp/` or `RATARMOUNT_INDEX_TMPDIR`
before using them.

## Performance

- Disable Python-side buffering when opening files via FUSE.
- Forward underlying archive block sizes to statfs and stat implementations.
- (ratarmountcore 0.8.0) Import [compiled zip decrypter](https://github.com/mxmlnkn/fast-zip-decryption/) for 100x speedup for Standard ZIP 2.0 encrypted ZIP files
- (ratarmountcore 0.8.0) Speed up `readdir` and therefore simple use cases such as `find` to iterate all files and folders by 3x.
- (ratarmountcore 0.8.0) Avoid reading the whole appended TAR parts into memory for the check has-been-appended-to check.
- (ratarmountcore 0.8.0) Fix block size being ignored when reading everything via `io.BufferedReader`.
- (ratarmountcore 0.8.0) Do not use parallelization with possibly huge prefetches for simple file type checks.

## Fixes

- `statfs` did not work when using a write overlay and calling it on a file not in the overlay folder.
- Union mounting of inputs with the same name, even if in different folders, ignored all but the first.
- Suppress teardown warning in case the mount source was not even created yet.
- Make mounting work with only a write overlay.
- Avoid hangs and errors caused by non-joined threads before forking into the background by checking for running threads.
- Set locale to C when calling GNU tar to get more reproducible output on `--commit-overlay`.
- (ratarmountcore 0.8.0) Argument to `--gzip-seek-point-spacing` was ignored when using the rapidgzip backend.
- (ratarmountcore 0.8.0) Index creation did not work with default arguments with an archive in a read-only location.
- (ratarmountcore 0.8.0) Close sqlite3 dummy connection after querying the SQLite version.
- (ratarmountcore 0.8.0) Avoid resource leaks in case a `MountSource` constructor throws.


# Version 0.15.2 built on 2024-09-01

- Setting either the owner or group for a file with `--write-overlay` would reset the group or user respectively.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![Ratarmount Logo](https://raw.githubusercontent.com/mxmlnkn/ratarmount/master/ratarmount.svg "Purple 'ratar' and dark green 'mount'. The `raarmoun` letters pleasingly have the exact same height, and the two bars of the 't's are spread over them. The t-bars are animated to connect in a full horizontal line from time to time.")

# Random Access Tar Mount (Ratarmount)
# Random Access To Archived Resources (Ratarmount)

[![Python Version](https://img.shields.io/pypi/pyversions/ratarmount)](https://pypi.org/project/ratarmount/)
[![PyPI version](https://badge.fury.io/py/ratarmount.svg)](https://badge.fury.io/py/ratarmount)
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ build-backend = "setuptools.build_meta"

[project]
name = "ratarmount"
version = "0.15.2"
description = "Random Access Read-Only Tar Mount"
authors = [{name = "Maximilian Knespel", email = "[email protected]"}]
version = "1.0.0"
description = "Random Access To Archived Resources"
authors = [{name = "Maximilian Knespel", email = "[email protected]"}]
license = {text = "MIT"}
classifiers = [
"License :: OSI Approved :: MIT License",
Expand Down
2 changes: 1 addition & 1 deletion ratarmount.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
from ratarmountcore.utils import imeta, getXdgCacheHome


__version__ = '0.15.2'
__version__ = '1.0.0'


def hasNonEmptySupport() -> bool:
Expand Down

0 comments on commit da4d2e4

Please sign in to comment.