Skip to content

Commit 817b991

Browse files
committed
zephyr: Bump crate version to 0.2.0
In preparation to deprecate some of the APIs, bump the crate version so that the deprecation annotation has a version to apply to. Signed-off-by: David Brown <[email protected]>
1 parent bcc9ee4 commit 817b991

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

docgen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ license = "Apache-2.0 or MIT"
1313
crate-type = ["staticlib"]
1414

1515
[dependencies]
16-
zephyr = "0.1.0"
16+
zephyr = "0.2.0"

samples/bench/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ license = "Apache-2.0 or MIT"
1313
crate-type = ["staticlib"]
1414

1515
[dependencies]
16-
zephyr = "0.1.0"
16+
zephyr = "0.2.0"
1717
critical-section = "1.1.2"
1818

1919
# Dependencies that are used by build.rs.

samples/blinky/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ license = "Apache-2.0 OR MIT"
1313
crate-type = ["staticlib"]
1414

1515
[dependencies]
16-
zephyr = "0.1.0"
16+
zephyr = "0.2.0"
1717
log = "0.4.22"
1818

1919
[build-dependencies]

samples/embassy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ license = "Apache-2.0 or MIT"
1313
crate-type = ["staticlib"]
1414

1515
[dependencies]
16-
zephyr = { version = "0.1.0", features = ["time-driver"] }
16+
zephyr = { version = "0.2.0", features = ["time-driver"] }
1717
log = "0.4.22"
1818
static_cell = "2.1"
1919
heapless = "0.8"

samples/hello_world/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ license = "Apache-2.0 or MIT"
1313
crate-type = ["staticlib"]
1414

1515
[dependencies]
16-
zephyr = "0.1.0"
16+
zephyr = "0.2.0"
1717
log = "0.4.22"

samples/philosophers/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ license = "Apache-2.0 or MIT"
1313
crate-type = ["staticlib"]
1414

1515
[dependencies]
16-
zephyr = "0.1.0"
16+
zephyr = "0.2.0"
1717

1818
# Dependencies that are used by build.rs.
1919
[build-dependencies]

samples/work-philosophers/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ license = "Apache-2.0 or MIT"
1313
crate-type = ["staticlib"]
1414

1515
[dependencies]
16-
zephyr = "0.1.0"
16+
zephyr = "0.2.0"
1717

1818
# Dependencies that are used by build.rs.
1919
[build-dependencies]

tests/time/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ license = "Apache-2.0 or MIT"
1313
crate-type = ["staticlib"]
1414

1515
[dependencies]
16-
zephyr = "0.1.0"
16+
zephyr = "0.2.0"

tests/timer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ crate-type = ["staticlib"]
1515
[dependencies]
1616
rand = { version = "0.8", default-features = false }
1717
rand_pcg = { version = "0.3.1", default-features = false }
18-
zephyr = "0.1.0"
18+
zephyr = "0.2.0"

zephyr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[package]
55
name = "zephyr"
6-
version = "0.1.0"
6+
version = "0.2.0"
77
edition = "2021"
88
description = """
99
Functionality for Rust-based applications that run on Zephyr.

0 commit comments

Comments
 (0)