diff --git a/CHANGELOG.md b/CHANGELOG.md index 5aacf70ce..830f5902a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,12 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.0] + ### Added -- Serve static files from `blobs` directory [#480](https://github.com/p2panda/aquadoggo/pull/480) +- Serve static files from `blobs` directory [#480](https://github.com/p2panda/aquadoggo/pull/480) 🥞 - Add method to store for pruning document views [#491](https://github.com/p2panda/aquadoggo/pull/491) - Introduce `BlobStore` [#484](https://github.com/p2panda/aquadoggo/pull/484) -- Task for automatic garbage collection of unused documents and views [#500](https://github.com/p2panda/aquadoggo/pull/500) +- Task for automatic garbage collection of unused documents and views [#500](https://github.com/p2panda/aquadoggo/pull/500) 🥞 - Blobs directory configuration [#549](https://github.com/p2panda/aquadoggo/pull/549) - Integrate `Bytes` operation value [#554](https://github.com/p2panda/aquadoggo/pull/554/) - Implement dependency replication for `blob_v1` and `blob_piece_v1` documents [#514](https://github.com/p2panda/aquadoggo/pull/514) @@ -261,7 +263,8 @@ Released on 2021-10-25: :package: [`crate`](https://crates.io/crates/aquadoggo/0 - Use p2panda-rs 0.2.1 with fixed linter setting [#41](https://github.com/p2panda/aquadoggo/41) - Use `tide` for HTTP server and `jsonrpc-v2` for JSON RPC [#29](https://github.com/p2panda/aquadoggo/29) -[unreleased]: https://github.com/p2panda/aquadoggo/compare/v0.5.0...HEAD +[unreleased]: https://github.com/p2panda/aquadoggo/compare/v0.6.0...HEAD +[0.5.0]: https://github.com/p2panda/aquadoggo/releases/tag/v0.6.0 [0.5.0]: https://github.com/p2panda/aquadoggo/releases/tag/v0.5.0 [0.4.0]: https://github.com/p2panda/aquadoggo/releases/tag/v0.4.0 [0.3.0]: https://github.com/p2panda/aquadoggo/releases/tag/v0.3.0 diff --git a/Cargo.lock b/Cargo.lock index c60475ee9..a1692f904 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -156,7 +156,7 @@ checksum = "3b13c32d80ecc7ab747b80c3784bce54ee8a7a0cc4fbda9bf4cda2cf6fe90854" [[package]] name = "aquadoggo" -version = "0.5.0" +version = "0.6.0" dependencies = [ "anyhow", "async-graphql", @@ -212,7 +212,7 @@ dependencies = [ [[package]] name = "aquadoggo_cli" -version = "0.5.0" +version = "0.6.0" dependencies = [ "anyhow", "aquadoggo", diff --git a/aquadoggo/Cargo.toml b/aquadoggo/Cargo.toml index 0f90db29f..47bcc12a4 100644 --- a/aquadoggo/Cargo.toml +++ b/aquadoggo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aquadoggo" -version = "0.5.0" +version = "0.6.0" authors = [ "adz ", "cafca ", diff --git a/aquadoggo_cli/Cargo.toml b/aquadoggo_cli/Cargo.toml index ed1681e41..d73bc5b11 100644 --- a/aquadoggo_cli/Cargo.toml +++ b/aquadoggo_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aquadoggo_cli" -version = "0.5.0" +version = "0.6.0" authors = [ "adz ", "cafca ", @@ -27,7 +27,7 @@ directories = "5.0.1" env_logger = "0.9.0" figment = { version = "0.10.10", features = ["toml", "env"] } hex = "0.4.3" -libp2p = "0.52.0" +libp2p = "0.52.4" log = "0.4.20" p2panda-rs = "0.8.0" path-clean = "1.0.1" @@ -38,5 +38,5 @@ tokio = { version = "1.28.2", features = ["full"] } toml = "0.7.6" [dependencies.aquadoggo] -version = "~0.5.0" +version = "~0.6.0" path = "../aquadoggo"