Skip to content

Commit

Permalink
Bump versions, ready for release
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmunns committed Nov 27, 2024
1 parent 41fe2a5 commit 9c01d42
Show file tree
Hide file tree
Showing 8 changed files with 46 additions and 59 deletions.
10 changes: 5 additions & 5 deletions example/firmware/Cargo.lock

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

6 changes: 3 additions & 3 deletions example/firmware/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ embassy-usb = { version = "0.3.0", features = ["defmt"] }
embedded-hal-bus = { version = "0.1", features = ["async"] }
lis3dh-async = { version = "0.9.2", features = ["defmt"] }
panic-probe = { version = "0.3", features = ["print-defmt"] }
postcard-rpc = { version = "0.10", features = ["embassy-usb-0_3-server"] }
postcard = { version = "1.0.8" }
postcard-schema = { version = "0.1.0", features = ["derive"] }
postcard-rpc = { version = "0.11", features = ["embassy-usb-0_3-server"] }
postcard = { version = "1.1.0" }
postcard-schema = { version = "0.2.0", features = ["derive"] }
portable-atomic = { version = "1.6.0", features = ["critical-section"] }

workbook-icd = { path = "../workbook-icd" }
Expand Down
19 changes: 13 additions & 6 deletions example/workbook-host/Cargo.lock

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

4 changes: 2 additions & 2 deletions example/workbook-host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ path = "../workbook-icd"
features = ["use-std"]

[dependencies.postcard-rpc]
version = "0.10"
version = "0.11"
features = [
"use-std",
"raw-nusb",
]

[dependencies.postcard-schema]
version = "0.1"
version = "0.2"
features = ["derive"]

[dependencies.tokio]
Expand Down
4 changes: 2 additions & 2 deletions example/workbook-icd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ features = ["derive"]
default-features = false

[dependencies.postcard-rpc]
version = "0.10"
version = "0.11"

[dependencies.postcard-schema]
version = "0.1"
version = "0.2"
features = ["derive"]

[patch.crates-io]
Expand Down
52 changes: 16 additions & 36 deletions source/postcard-rpc-test/Cargo.lock

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

4 changes: 2 additions & 2 deletions source/postcard-rpc-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies.postcard]
version = "1.0.8"
version = "1.1.0"
features = ["use-std", "experimental-derive"]

[dependencies.serde]
Expand All @@ -16,7 +16,7 @@ path = "../postcard-rpc"
features = ["use-std", "test-utils"]

[dependencies.postcard-schema]
version = "0.1.0"
version = "0.2.0"
features = ["derive"]

[dependencies.tokio]
Expand Down
6 changes: 3 additions & 3 deletions source/postcard-rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "postcard-rpc"
version = "0.10.7"
version = "0.11.0"
authors = ["James Munns <[email protected]>"]
edition = "2021"
repository = "https://github.com/jamesmunns/postcard-rpc"
Expand All @@ -27,9 +27,9 @@ features = [
cobs = { version = "0.2.3", optional = true, default-features = false }
defmt = { version = "0.3.5", optional = true }
heapless = "0.8.0"
postcard = { version = "1.0.8" }
postcard = { version = "1.1.0" }
serde = { version = "1.0.192", default-features = false, features = ["derive"] }
postcard-schema = { version = "0.1.0", features = ["derive"] }
postcard-schema = { version = "0.2.0", features = ["derive"] }

#
# std-only features
Expand Down

0 comments on commit 9c01d42

Please sign in to comment.