prep for 0.5.0 release
This commit is contained in:
parent
66595ccfd6
commit
1528cdd9c4
|
@ -16,10 +16,17 @@
|
||||||
* Improve breadth of schema support (#592)
|
* Improve breadth of schema support (#592)
|
||||||
* Various changes to avoid name collisions (#599)
|
* Various changes to avoid name collisions (#599)
|
||||||
* Support for text/plain and text/x-markdown body content types (#593)
|
* 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]
|
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)
|
== 0.4.0 (released 2023-09-25)
|
||||||
|
|
||||||
* Support for updated dropshot pagination extension (#465)
|
* Support for updated dropshot pagination extension (#465)
|
||||||
|
|
|
@ -2348,7 +2348,8 @@ checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "typify"
|
name = "typify"
|
||||||
version = "0.0.15"
|
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 = [
|
dependencies = [
|
||||||
"typify-impl",
|
"typify-impl",
|
||||||
"typify-macro",
|
"typify-macro",
|
||||||
|
@ -2357,7 +2358,8 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "typify-impl"
|
name = "typify-impl"
|
||||||
version = "0.0.15"
|
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 = [
|
dependencies = [
|
||||||
"heck",
|
"heck",
|
||||||
"log",
|
"log",
|
||||||
|
@ -2374,7 +2376,8 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "typify-macro"
|
name = "typify-macro"
|
||||||
version = "0.0.15"
|
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 = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
|
|
|
@ -22,8 +22,8 @@ serde_json = "1.0"
|
||||||
syn = { version = "2.0", features = ["parsing"] }
|
syn = { version = "2.0", features = ["parsing"] }
|
||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
# change when publishing
|
# change when publishing
|
||||||
#typify = { version = "0.0.14" }
|
typify = { version = "0.0.15" }
|
||||||
typify = { git = "https://github.com/oxidecomputer/typify" }
|
#typify = { git = "https://github.com/oxidecomputer/typify" }
|
||||||
unicode-ident = "1.0.12"
|
unicode-ident = "1.0.12"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|
Loading…
Reference in New Issue