Skip to content

Commit a00aed9

Browse files
committed
tool, CHANGELOG.md: bump version
1 parent a4837ca commit a00aed9

File tree

3 files changed

+32
-2
lines changed

3 files changed

+32
-2
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,35 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
66

77
Also, at the bottom of this file there is a [TODO list](#todo) with planned future changes.
88

9+
## [tool-v0.22.0] - 2025-01-17: Incremental improvements
10+
11+
### Changed
12+
13+
- `*`:
14+
- Formatted code using `black`.
15+
- Fixed minor issues found by `pylint`.
16+
- Simplified a bunch of code.
17+
- Moved a bunch of code to `kisstdlib`.
18+
- Changed the rest to work with the new version of `kisstdlib`.
19+
- Improved error handling and error messages.
20+
21+
- `serve`:
22+
23+
- From now on, when archiving/dumping, by default, it will both return errors to the client and also print them to `stderr`.
24+
The latter can be disabled by `--quiet`.
25+
26+
- Improved documentation.
27+
28+
### Fixed
29+
30+
- `*`:
31+
- Fixed extension detection for `.css` and `.mjs` files.
32+
- Fixed a potential crash when parsing `WRR` files.
33+
34+
- `serve` and, likely, `organize`:
35+
36+
- Fixed it not working on Windows. (Thanks to @douglasg14b on GitHub!)
37+
938
## [simple_server-v1.9.0] - 2025-01-17: Incremental improvements
1039

1140
### Changed
@@ -2116,6 +2145,7 @@ All planned features are complete now.
21162145
21172146
- Initial public release.
21182147
2148+
[tool-v0.22.0]: https://github.com/Own-Data-Privateer/hoardy-web/compare/tool-v0.21.0...tool-v0.22.0
21192149
[simple_server-v1.9.0]: https://github.com/Own-Data-Privateer/hoardy-web/compare/simple_server-v1.8.0...simple_server-v1.9.0
21202150
[tool-v0.21.0]: https://github.com/Own-Data-Privateer/hoardy-web/compare/tool-v0.20.0...tool-v0.21.0
21212151
[extension-v1.19.0]: https://github.com/Own-Data-Privateer/hoardy-web/compare/extension-v1.18.0...extension-v1.19.0

tool/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ with pkgs.python3Packages;
1313

1414
buildPythonApplication (rec {
1515
pname = "hoardy-web";
16-
version = "0.21.0";
16+
version = "0.22.0";
1717
format = "pyproject";
1818

1919
inherit (source) src unpackPhase;

tool/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
packages = ["hoardy_web"]
66
[project]
77
name = "hoardy-web"
8-
version = "0.21.0"
8+
version = "0.22.0"
99
authors = [{ name = "Jan Malakhovski", email = "oxij@oxij.org" }]
1010
description = "Inspect, search, organize, programmatically extract values and generate static website mirrors from, archive, view, and replay `HTTP` archives/dumps in `WRR` (\"Web Request+Response\", produced by the `Hoardy-Web` Web Extension browser add-on) and `mitmproxy` (`mitmdump`) file formats."
1111
readme = "README.md"

0 commit comments

Comments
 (0)