diff --git a/CHANGELOG.md b/CHANGELOG.md index f283ae3..be67e47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.1] - 2026-02-12 + +### Highlights + +- Updated dependencies to latest versions +- Added maintenance spec for periodic upkeep +- Documentation improvements + +### What's Changed + +* chore: periodic maintenance - update deps, docs, and add maintenance spec ([#15](https://github.com/everruns/fetchkit/pull/15)) by @chaliy + +**Full Changelog**: https://github.com/everruns/fetchkit/compare/v0.1.0...v0.1.1 + ## [0.1.0] - 2026-02-12 ### Highlights @@ -30,5 +44,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 **Full Changelog**: https://github.com/everruns/fetchkit/commits/v0.1.0 -[Unreleased]: https://github.com/everruns/fetchkit/compare/v0.1.0...HEAD +[Unreleased]: https://github.com/everruns/fetchkit/compare/v0.1.1...HEAD +[0.1.1]: https://github.com/everruns/fetchkit/compare/v0.1.0...v0.1.1 [0.1.0]: https://github.com/everruns/fetchkit/releases/tag/v0.1.0 diff --git a/Cargo.lock b/Cargo.lock index 64de254..bbb7a76 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -394,7 +394,7 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" [[package]] name = "fetchkit" -version = "0.1.0" +version = "0.1.1" dependencies = [ "async-trait", "bytes", @@ -414,7 +414,7 @@ dependencies = [ [[package]] name = "fetchkit-cli" -version = "0.1.0" +version = "0.1.1" dependencies = [ "clap", "fetchkit", @@ -425,7 +425,7 @@ dependencies = [ [[package]] name = "fetchkit-python" -version = "0.1.0" +version = "0.1.1" dependencies = [ "fetchkit", "pyo3", diff --git a/Cargo.toml b/Cargo.toml index cd1907d..b8309cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ resolver = "2" members = ["crates/*"] [workspace.package] -version = "0.1.0" +version = "0.1.1" edition = "2021" license = "MIT" authors = ["Everruns"] diff --git a/crates/fetchkit-cli/Cargo.toml b/crates/fetchkit-cli/Cargo.toml index 80a42c6..f1a6e76 100644 --- a/crates/fetchkit-cli/Cargo.toml +++ b/crates/fetchkit-cli/Cargo.toml @@ -15,7 +15,7 @@ name = "fetchkit" path = "src/main.rs" [dependencies] -fetchkit = { path = "../fetchkit", version = "0.1.0" } +fetchkit = { path = "../fetchkit", version = "0.1.1" } tokio = { workspace = true } clap = { workspace = true } serde = { workspace = true }