Skip to content

Commit

Permalink
prepare for 0.9.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ahl committed Dec 27, 2024
1 parent d836501 commit 31300f2
Show file tree
Hide file tree
Showing 12 changed files with 185 additions and 182 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@

https://github.com/oxidecomputer/progenitor/compare/v0.8.0\...HEAD[Full list of commits]

* handle array-like and map-like query parameters (#1017)
* support custom map types (#1011)
* add a progenitor feature for use of macro (and client) (#1007)
* add async post_hook function support (#942)
* fix name-collision and code-generation issues (#1019) (#993) (#933) (#941)

== 0.8.0 (released 2024-09-26)

https://github.com/oxidecomputer/progenitor/compare/v0.7.0\...v0.8.0[Full list of commits]
Expand Down
15 changes: 9 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ syn = { version = "2.0.91", features = ["parsing"] }
thiserror = "2.0.9"
tokio = { version = "1.42.0", features = ["rt", "net"] }
# change when publishing
# typify = { version = "0.2.0" }
typify = { git = "https://github.com/oxidecomputer/typify" }
typify = { version = "0.3.0" }
# typify = { git = "https://github.com/oxidecomputer/typify" }
url = "2.5.4"
unicode-ident = "1.0.14"
uuid = { version = "1.11.0", features = ["serde", "v4"] }
Expand Down
2 changes: 1 addition & 1 deletion progenitor-impl/tests/output/src/buildomat_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ pub mod types {
Variant1(::std::vec::Vec<::std::string::String>),
}

impl ::std::convert::From<&GetThingOrThingsId> for GetThingOrThingsId {
impl ::std::convert::From<&Self> for GetThingOrThingsId {
fn from(value: &GetThingOrThingsId) -> Self {
value.clone()
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ pub mod types {
Variant1(::std::vec::Vec<::std::string::String>),
}

impl ::std::convert::From<&GetThingOrThingsId> for GetThingOrThingsId {
impl ::std::convert::From<&Self> for GetThingOrThingsId {
fn from(value: &GetThingOrThingsId) -> Self {
value.clone()
}
Expand Down
2 changes: 1 addition & 1 deletion progenitor-impl/tests/output/src/buildomat_positional.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ pub mod types {
Variant1(::std::vec::Vec<::std::string::String>),
}

impl ::std::convert::From<&GetThingOrThingsId> for GetThingOrThingsId {
impl ::std::convert::From<&Self> for GetThingOrThingsId {
fn from(value: &GetThingOrThingsId) -> Self {
value.clone()
}
Expand Down
Loading

0 comments on commit 31300f2

Please sign in to comment.