diff --git a/Cargo.lock b/Cargo.lock index 183ed654..cda7e088 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -660,7 +660,7 @@ dependencies = [ [[package]] name = "devtools" -version = "0.2.5" +version = "0.3.0" dependencies = [ "async-stream", "bytes", @@ -684,7 +684,7 @@ dependencies = [ [[package]] name = "devtools-wire-format" -version = "0.2.5" +version = "0.3.0" dependencies = [ "bitflags 2.4.1", "prost", diff --git a/Cargo.toml b/Cargo.toml index 303af96b..e345d86e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = ["wire", "devtools", "examples/*"] [workspace.package] authors = ["CrabNebula "] edition = "2021" -version = "0.2.5" +version = "0.3.0" rust-version = "1.70.0" license = "MIT OR Apache-2.0" repository = "https://github.com/crabnebula-dev/devtools" diff --git a/devtools/CHANGELOG.md b/devtools/CHANGELOG.md index f06cdc94..f95cda18 100644 --- a/devtools/CHANGELOG.md +++ b/devtools/CHANGELOG.md @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0](https://github.com/crabnebula-dev/devtools/compare/devtools-v0.2.5...devtools-v0.3.0) - 2023-12-20 + +### Fixed +- pick free port + +### Other +- Update error.rs +- Merge pull request [#165](https://github.com/crabnebula-dev/devtools/pull/165) from crabnebula-dev/jonas/fix/pick-free-port +- fmt +- Update devtools/src/builder.rs +- clippy & fmt + ## [0.2.5](https://github.com/crabnebula-dev/devtools/compare/devtools-v0.2.4...devtools-v0.2.5) - 2023-12-11 ### Other diff --git a/devtools/Cargo.toml b/devtools/Cargo.toml index 11e32a00..16370885 100644 --- a/devtools/Cargo.toml +++ b/devtools/Cargo.toml @@ -11,7 +11,7 @@ repository.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -devtools-wire-format = { path = "../wire", version = "0.2.5" } +devtools-wire-format = { path = "../wire", version = "0.3.0" } tracing.workspace = true tracing-core.workspace = true tracing-subscriber.workspace = true