Skip to content

Commit

Permalink
chore(release): 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravencentric committed Jul 6, 2024
1 parent 54044a4 commit 1ea4d24
Show file tree
Hide file tree
Showing 5 changed files with 531 additions and 558 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.4.3
rev: v0.5.1
hooks:
- id: ruff
args: ['--fix']
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.4.3
rev: v0.5.1
hooks:
- id: ruff-format
- repo: https://github.com/python-poetry/poetry
Expand Down
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ The above libraries are excellent when you are dealing with a single archive for

2. With optional dependencies:

- Required for [`ArchiveFile.print_tree()`](https://ravencentric.github.io/archivefile/api-reference/archivefile/#archivefile.ArchiveFile.print_tree)
- Required for [`ArchiveFile.print_tree()`](https://archivefile.ravencentric.cc/api-reference/archivefile/#archivefile.ArchiveFile.print_tree)

```sh
pip install archivefile[bigtree]
```

- Required for [`ArchiveFile.print_table()`](https://ravencentric.github.io/archivefile/api-reference/archivefile/#archivefile.ArchiveFile.print_table)
- Required for [`ArchiveFile.print_table()`](https://archivefile.ravencentric.cc/api-reference/archivefile/#archivefile.ArchiveFile.print_table)

```sh
pip install archivefile[rich]
Expand Down Expand Up @@ -92,11 +92,9 @@ with ArchiveFile("../source.zip", "w") as archive:
archive.write_bytes(b"0101001010100101", arcname="terminator.py") # Write bytes to the archive as terminator.py
```

Refer to the [API reference](https://ravencentric.github.io/archivefile/api-reference/archivefile/) for more details.

## Docs

Checkout the complete documentation [here](https://ravencentric.github.io/archivefile/).
Checkout the complete documentation [here](https://archivefile.ravencentric.cc/).

## License

Expand Down
6 changes: 2 additions & 4 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ The above libraries are excellent when you are dealing with a single archive for

2. With optional dependencies:

- Required for [`ArchiveFile.print_tree()`](https://ravencentric.github.io/archivefile/api-reference/archivefile/#archivefile.ArchiveFile.print_tree)
- Required for [`ArchiveFile.print_tree()`](https://archivefile.ravencentric.cc/api-reference/archivefile/#archivefile.ArchiveFile.print_tree)

```sh
pip install archivefile[bigtree]
```

- Required for [`ArchiveFile.print_table()`](https://ravencentric.github.io/archivefile/api-reference/archivefile/#archivefile.ArchiveFile.print_table)
- Required for [`ArchiveFile.print_table()`](https://archivefile.ravencentric.cc/api-reference/archivefile/#archivefile.ArchiveFile.print_table)

```sh
pip install archivefile[rich]
Expand Down Expand Up @@ -92,8 +92,6 @@ with ArchiveFile("../source.zip", "w") as archive:
archive.write_bytes(b"0101001010100101", arcname="terminator.py") # Write bytes to the archive as terminator.py
```

Refer to the [API reference](https://ravencentric.github.io/archivefile/api-reference/archivefile/) for more details.

## License

Distributed under the [Unlicense](https://choosealicense.com/licenses/unlicense/) License. See [UNLICENSE](https://github.com/Ravencentric/archivefile/blob/main/UNLICENSE) for more information.
Loading

0 comments on commit 1ea4d24

Please sign in to comment.