diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 97b9fd0..9b9b605 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -16,10 +16,17 @@ * Improve breadth of schema support (#592) * Various changes to avoid name collisions (#599) * Support for text/plain and text/x-markdown body content types (#593) -* Upgrade to openapiv3 v2.0.0 +* Upgrade to `openapiv3` v2.0.0 +* Various type generation changes from `typify` 0.0.15 https://github.com/oxidecomputer/progenitor/compare/v0.4.0\...HEAD[Full list of commits] +== 0.4.1 (released 2023-12-15) + +* Fixed an issue with `openapiv3` and `indexmap` dependencies + +https://github.com/oxidecomputer/progenitor/compare/v0.4.0\...v0.4.1[Full list of commits] + == 0.4.0 (released 2023-09-25) * Support for updated dropshot pagination extension (#465) diff --git a/Cargo.lock b/Cargo.lock index 4561b33..ee8fbf5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2348,7 +2348,8 @@ checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" [[package]] name = "typify" version = "0.0.15" -source = "git+https://github.com/oxidecomputer/typify#0894f06e6798f24efcbd7134746962aa0e6eb371" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63ed4d717aa95e598e2f9183376b060e95669ef8f444701ea6afb990fde1cf69" dependencies = [ "typify-impl", "typify-macro", @@ -2357,7 +2358,8 @@ dependencies = [ [[package]] name = "typify-impl" version = "0.0.15" -source = "git+https://github.com/oxidecomputer/typify#0894f06e6798f24efcbd7134746962aa0e6eb371" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89057244dfade7c58af9e62beccbcbeb7a7e7701697a33b06dbe0b7331fb79cf" dependencies = [ "heck", "log", @@ -2374,7 +2376,8 @@ dependencies = [ [[package]] name = "typify-macro" version = "0.0.15" -source = "git+https://github.com/oxidecomputer/typify#0894f06e6798f24efcbd7134746962aa0e6eb371" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2ddade397f5957d2cd7fb27f905a9a569db20e8e1e3ea589edce40be07b92825" dependencies = [ "proc-macro2", "quote", diff --git a/progenitor-impl/Cargo.toml b/progenitor-impl/Cargo.toml index ed07a78..72aec51 100644 --- a/progenitor-impl/Cargo.toml +++ b/progenitor-impl/Cargo.toml @@ -22,8 +22,8 @@ serde_json = "1.0" syn = { version = "2.0", features = ["parsing"] } thiserror = "1.0" # change when publishing -#typify = { version = "0.0.14" } -typify = { git = "https://github.com/oxidecomputer/typify" } +typify = { version = "0.0.15" } +#typify = { git = "https://github.com/oxidecomputer/typify" } unicode-ident = "1.0.12" [dev-dependencies]