prep for release

This commit is contained in:
Adam H. Leventhal 2024-05-15 09:53:09 -07:00
parent 98d5f1b0b7
commit a85b0f00d9
3 changed files with 11 additions and 5 deletions

View File

@ -13,6 +13,9 @@
== Unreleased changes (release date TBD) == Unreleased changes (release date TBD)
* Minor fixes
* Support for `x-rust-types`` via typify (#804)
https://github.com/oxidecomputer/progenitor/compare/v0.6.0\...HEAD[Full list of commits] https://github.com/oxidecomputer/progenitor/compare/v0.6.0\...HEAD[Full list of commits]
== 0.6.0 (released 2024-02-28) == 0.6.0 (released 2024-02-28)

9
Cargo.lock generated
View File

@ -2393,7 +2393,8 @@ checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
[[package]] [[package]]
name = "typify" name = "typify"
version = "0.1.0" version = "0.1.0"
source = "git+https://github.com/oxidecomputer/typify#ad1296f6ceb998ae8c247d999b7828703a232bdd" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "adb6beec125971dda80a086f90b4a70f60f222990ce4d63ad0fc140492f53444"
dependencies = [ dependencies = [
"typify-impl", "typify-impl",
"typify-macro", "typify-macro",
@ -2402,7 +2403,8 @@ dependencies = [
[[package]] [[package]]
name = "typify-impl" name = "typify-impl"
version = "0.1.0" version = "0.1.0"
source = "git+https://github.com/oxidecomputer/typify#ad1296f6ceb998ae8c247d999b7828703a232bdd" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93bbb24e990654aff858d80fee8114f4322f7d7a1b1ecb45129e2fcb0d0ad5ae"
dependencies = [ dependencies = [
"heck", "heck",
"log", "log",
@ -2421,7 +2423,8 @@ dependencies = [
[[package]] [[package]]
name = "typify-macro" name = "typify-macro"
version = "0.1.0" version = "0.1.0"
source = "git+https://github.com/oxidecomputer/typify#ad1296f6ceb998ae8c247d999b7828703a232bdd" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8e6491896e955692d68361c68db2b263e3bec317ec0b684e0e2fa882fb6e31e"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",

View File

@ -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.16" } typify = { version = "0.1.0" }
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]