Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publish 0.6.0 #344

Merged
merged 1 commit into from
Sep 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "diplomat_core"
description = "Shared utilities between Diplomat macros and code generation"
version = "0.5.2"
version = "0.6.0"
authors = [
"Shadaj Laddad <[email protected]>",
"Manish Goregaokar <[email protected]>",
Expand Down
4 changes: 2 additions & 2 deletions macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "diplomat"
description = "The diplomat FFI generation macro"
version = "0.5.2"
version = "0.6.0"
authors = [
"Shadaj Laddad <[email protected]>",
"Manish Goregaokar <[email protected]>",
Expand All @@ -19,7 +19,7 @@ proc-macro = true
path = "src/lib.rs"

[dependencies]
diplomat_core = { path = "../core", version = "0.5.2" }
diplomat_core = { path = "../core", version = "0.6.0" }
syn = { version = "2.0", features = [ "full", "extra-traits" ] }
quote = "1.0"
proc-macro2 = "1.0.27"
Expand Down
2 changes: 1 addition & 1 deletion runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "diplomat-runtime"
description = "Common runtime utilities used by diplomat codegen"
version = "0.5.2"
version = "0.6.0"
authors = [
"Shadaj Laddad <[email protected]>",
"Manish Goregaokar <[email protected]>",
Expand Down
4 changes: 2 additions & 2 deletions tool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "diplomat-tool"
description = "Tool for generating FFI bindings for various languages"
version = "0.5.2"
version = "0.6.0"
authors = [
"Shadaj Laddad <[email protected]>",
"Manish Goregaokar <[email protected]>",
Expand All @@ -15,7 +15,7 @@ categories = ["development-tools"]
repository = "https://github.com/rust-diplomat/diplomat"

[dependencies]
diplomat_core = { path = "../core", version = "0.5.1", features = ["displaydoc", "hir"] }
diplomat_core = { path = "../core", version = "0.6.0", features = ["displaydoc", "hir"] }
syn = { version = "2", features = [ "full", "extra-traits" ] }
syn-inline-mod = "0.6.0"
quote = "1.0"
Expand Down
Loading