Skip to content

Commit 31300f2

Browse files
committed
prepare for 0.9.0 release
1 parent d836501 commit 31300f2

12 files changed

+185
-182
lines changed

CHANGELOG.adoc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@
1515

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

18+
* handle array-like and map-like query parameters (#1017)
19+
* support custom map types (#1011)
20+
* add a progenitor feature for use of macro (and client) (#1007)
21+
* add async post_hook function support (#942)
22+
* fix name-collision and code-generation issues (#1019) (#993) (#933) (#941)
23+
1824
== 0.8.0 (released 2024-09-26)
1925

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

Cargo.lock

Lines changed: 9 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ syn = { version = "2.0.91", features = ["parsing"] }
5353
thiserror = "2.0.9"
5454
tokio = { version = "1.42.0", features = ["rt", "net"] }
5555
# change when publishing
56-
# typify = { version = "0.2.0" }
57-
typify = { git = "https://github.com/oxidecomputer/typify" }
56+
typify = { version = "0.3.0" }
57+
# typify = { git = "https://github.com/oxidecomputer/typify" }
5858
url = "2.5.4"
5959
unicode-ident = "1.0.14"
6060
uuid = { version = "1.11.0", features = ["serde", "v4"] }

progenitor-impl/tests/output/src/buildomat_builder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ pub mod types {
6666
Variant1(::std::vec::Vec<::std::string::String>),
6767
}
6868

69-
impl ::std::convert::From<&GetThingOrThingsId> for GetThingOrThingsId {
69+
impl ::std::convert::From<&Self> for GetThingOrThingsId {
7070
fn from(value: &GetThingOrThingsId) -> Self {
7171
value.clone()
7272
}

progenitor-impl/tests/output/src/buildomat_builder_tagged.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ pub mod types {
6464
Variant1(::std::vec::Vec<::std::string::String>),
6565
}
6666

67-
impl ::std::convert::From<&GetThingOrThingsId> for GetThingOrThingsId {
67+
impl ::std::convert::From<&Self> for GetThingOrThingsId {
6868
fn from(value: &GetThingOrThingsId) -> Self {
6969
value.clone()
7070
}

progenitor-impl/tests/output/src/buildomat_positional.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ pub mod types {
6565
Variant1(::std::vec::Vec<::std::string::String>),
6666
}
6767

68-
impl ::std::convert::From<&GetThingOrThingsId> for GetThingOrThingsId {
68+
impl ::std::convert::From<&Self> for GetThingOrThingsId {
6969
fn from(value: &GetThingOrThingsId) -> Self {
7070
value.clone()
7171
}

0 commit comments

Comments
 (0)