diff --git a/CHANGELOG.md b/CHANGELOG.md index e374661..500f1ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.2.0](https://git.kemitix.net/kemitix/kxio/compare/v3.1.0...v3.2.0) - 2024-12-12 + +### Added + +- *(net)* trace log the body of a request +- *(net)* don't use panic to signal test should fail +- *(print)* add print module +- *(net)* add tracing +- *(fs)* add tracing +- *(net)* add bearer_auth helper to MockNet +- *(net)* add basic_auth helper to MockNet +- *(net)* add user_agent helper to MockNet +- *(net)* mock requests based on query parameters + +### Fixed + +- *(net)* typo in test data +- *(example)* don't use relative path - not allowed + +### Other + +- *(deps)* update kemitix/rust action to v2.5.0 +- *(net)* elide lifetime +- ignore any occasional use of rover +- *(push-next)* add ability for manual workflow dispatch + ## [3.1.0](https://git.kemitix.net/kemitix/kxio/compare/v3.0.0...v3.1.0) - 2024-11-21 ### Added diff --git a/Cargo.toml b/Cargo.toml index bd16910..3c4e07e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kxio" -version = "3.1.0" +version = "3.2.0" edition = "2021" authors = ["Paul Campbell "] description = "Provides injectable Filesystem and Network resources to make code more testable"