diff --git a/CHANGELOG.md b/CHANGELOG.md index 8595ccf..c3c5a9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,30 @@ All notable changes to this project are documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [tool-v0.15.4] - 2024-10-02 + +### Fixed + +- `get`, etc: + + - Added a work-around for `idna` module failing to parse some hostnames ([#5 on GitHub](https://github.com/Own-Data-Privateer/hoardy-web/issues/5)). + +- `find`: + + - Added `--sniff-*` options to fix crashes introduced in `v0.15.0`. + + Added tests to hopefully stop this kind of errors. + +### Changed + +- `get`, etc: + + - `--expr`: technically, renamed `full_url` -\> `url`, though it did not officially exist before. + + Added it to the docs. + + - `ftp` and `ftps` URL schemes are now allowed everywhere. + ## [tool-v0.15.3] - 2024-09-28 ### Fixed @@ -1117,6 +1141,7 @@ All planned features are complete now. - Initial public release. +[tool-v0.15.4]: https://github.com/Own-Data-Privateer/hoardy-web/compare/tool-v0.15.3...tool-v0.15.4 [tool-v0.15.3]: https://github.com/Own-Data-Privateer/hoardy-web/compare/tool-v0.15.2...tool-v0.15.3 [tool-v0.15.2]: https://github.com/Own-Data-Privateer/hoardy-web/compare/tool-v0.15.1...tool-v0.15.2 [tool-v0.15.1]: https://github.com/Own-Data-Privateer/hoardy-web/compare/tool-v0.15.0...tool-v0.15.1 diff --git a/tool/default.nix b/tool/default.nix index 375f499..3f933e0 100644 --- a/tool/default.nix +++ b/tool/default.nix @@ -13,7 +13,7 @@ with pkgs.python3Packages; buildPythonApplication (rec { pname = "hoardy-web"; - version = "0.15.3"; + version = "0.15.4"; format = "pyproject"; inherit (source) src unpackPhase; diff --git a/tool/pyproject.toml b/tool/pyproject.toml index aae9624..b5872ef 100644 --- a/tool/pyproject.toml +++ b/tool/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" packages = ["hoardy_web"] [project] name = "hoardy-web" -version = "0.15.3" +version = "0.15.4" authors = [{ name = "Jan Malakhovski", email = "oxij@oxij.org" }] description = "Display, search, programmatically extract values from, organize, manipulate, import, and export Web Request+Response (`WRR`) files produced by the `Hoardy-Web` Web Extension browser add-on." readme = "README.md"