diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 10f79209c..1c1cd048a 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -13,7 +13,11 @@ == Unreleased changes (release date TBD) -https://github.com/oxidecomputer/dropshot/compare/v0.11.0\...HEAD[Full list of commits] +https://github.com/oxidecomputer/dropshot/compare/v0.12.0\...HEAD[Full list of commits] + +== 0.12.0 (released 2024-09-26) + +https://github.com/oxidecomputer/dropshot/compare/v0.11.0\...v0.12.0[Full list of commits] === Breaking Changes diff --git a/Cargo.lock b/Cargo.lock index 73a7d24ac..ae70baf2d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -345,7 +345,7 @@ dependencies = [ [[package]] name = "dropshot" -version = "0.11.1-dev" +version = "0.12.0" dependencies = [ "anyhow", "async-channel", @@ -409,7 +409,7 @@ dependencies = [ [[package]] name = "dropshot_endpoint" -version = "0.11.1-dev" +version = "0.12.0" dependencies = [ "expectorate", "heck", diff --git a/dropshot/Cargo.toml b/dropshot/Cargo.toml index c6f5cf8b3..2b53152bc 100644 --- a/dropshot/Cargo.toml +++ b/dropshot/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "dropshot" description = "expose REST APIs from a Rust program" -version = "0.11.1-dev" +version = "0.12.0" authors = ["David Pacheco "] edition = "2021" license = "Apache-2.0" @@ -52,7 +52,7 @@ features = [ "serde", "std", "clock" ] default-features = false [dependencies.dropshot_endpoint] -version = "^0.11.1-dev" +version = "^0.12.0" path = "../dropshot_endpoint" [dependencies.hyper] diff --git a/dropshot_endpoint/Cargo.toml b/dropshot_endpoint/Cargo.toml index 3b96696ad..95e13ca10 100644 --- a/dropshot_endpoint/Cargo.toml +++ b/dropshot_endpoint/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "dropshot_endpoint" description = "macro used by dropshot consumers for registering handlers" -version = "0.11.1-dev" +version = "0.12.0" authors = ["Adam H. Leventhal "] edition = "2021" license = "Apache-2.0"