diff --git a/examples/rp2040_local_i2c_init/Cargo.toml b/examples/rp2040_local_i2c_init/Cargo.toml index 2d004e105c..c2cce7bc7f 100644 --- a/examples/rp2040_local_i2c_init/Cargo.toml +++ b/examples/rp2040_local_i2c_init/Cargo.toml @@ -10,12 +10,12 @@ edition = "2021" [dependencies.rtic] path = "../../rtic" -version = "=2.0.0-alpha.2" +version = "2.0.0" features = ["thumbv6-backend"] [dependencies.rtic-monotonics] path = "../../rtic-monotonics" -version = "=1.0.0-alpha.2" +version = "1.0.0" features = ["rp2040"] [dependencies] diff --git a/examples/stm32f3_blinky/Cargo.toml b/examples/stm32f3_blinky/Cargo.toml index be4d03d010..3773f0e581 100644 --- a/examples/stm32f3_blinky/Cargo.toml +++ b/examples/stm32f3_blinky/Cargo.toml @@ -9,18 +9,18 @@ version = "0.1.0" [dependencies.rtic] path = "../../rtic" -version = "=2.0.0-alpha.2" +version = "2.0.0" features = ["thumbv7-backend"] [dependencies.rtic-monotonics] path = "../../rtic-monotonics" -version = "=1.0.0-alpha.2" +version = "1.0.0" features = ["cortex-m-systick"] [dependencies] embedded-hal = "0.2.7" panic-rtt-target = { version = "0.1.2", features = ["cortex-m"] } -rtt-target = { version = "0.3.1", features = ["cortex-m"] } +rtt-target = { version = "0.4.0" } [dependencies.stm32f3xx-hal] features = ["stm32f303xc", "rt"] diff --git a/rtic-common/Cargo.toml b/rtic-common/Cargo.toml index 726090ac0e..1e7f98f71e 100644 --- a/rtic-common/Cargo.toml +++ b/rtic-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rtic-common" -version = "1.0.0-alpha.0" +version = "1.0.0" edition = "2021" authors = [ diff --git a/rtic-macros/Cargo.toml b/rtic-macros/Cargo.toml index f7e6c7b32c..62734ee795 100644 --- a/rtic-macros/Cargo.toml +++ b/rtic-macros/Cargo.toml @@ -22,7 +22,7 @@ name = "rtic-macros" readme = "../README.md" repository = "https://github.com/rtic-rs/rtic" -version = "2.0.0-alpha.2" +version = "2.0.0" [lib] proc-macro = true diff --git a/rtic-monotonics/Cargo.toml b/rtic-monotonics/Cargo.toml index 50785e9dc2..88fd208cf0 100644 --- a/rtic-monotonics/Cargo.toml +++ b/rtic-monotonics/Cargo.toml @@ -1,14 +1,14 @@ [package] name = "rtic-monotonics" -version = "1.0.0-alpha.2" +version = "1.0.0" edition = "2021" authors = [ - "The Real-Time Interrupt-driven Concurrency developers", - "Emil Fresk ", - "Henrik Tjäder ", - "Jorge Aparicio ", - "Per Lindgren ", + "The Real-Time Interrupt-driven Concurrency developers", + "Emil Fresk ", + "Henrik Tjäder ", + "Jorge Aparicio ", + "Per Lindgren ", ] categories = ["concurrency", "embedded", "no-std", "asynchronous"] description = "A library that provides implementations of the Monotonic trait from rtic-time" @@ -19,7 +19,7 @@ features = ["cortex-m-systick", "rp2040", "nrf52840"] rustdoc-flags = ["--cfg", "docsrs"] [dependencies] -rtic-time = { version = "1.0.0-alpha.1", path = "../rtic-time" } +rtic-time = { version = "1.0.0", path = "../rtic-time" } embedded-hal-async = { version = "0.2.0-alpha.1", optional = true } fugit = { version = "0.3.6" } atomic-polyfill = "1" diff --git a/rtic-sync/Cargo.toml b/rtic-sync/Cargo.toml index 440a6bebbd..ccb6cab5ef 100644 --- a/rtic-sync/Cargo.toml +++ b/rtic-sync/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rtic-sync" -version = "1.0.0-alpha.0" +version = "1.0.0" edition = "2021" authors = [ @@ -19,7 +19,7 @@ license = "MIT OR Apache-2.0" [dependencies] heapless = "0.7" critical-section = "1" -rtic-common = { version = "1.0.0-alpha.0", path = "../rtic-common" } +rtic-common = { version = "1.0.0", path = "../rtic-common" } [dev-dependencies] tokio = { version = "1", features = ["rt", "macros", "time"] } diff --git a/rtic-time/Cargo.toml b/rtic-time/Cargo.toml index b0746c17cb..ef7635e319 100644 --- a/rtic-time/Cargo.toml +++ b/rtic-time/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rtic-time" -version = "1.0.0-alpha.1" +version = "1.0.0" edition = "2021" authors = [ @@ -19,7 +19,7 @@ license = "MIT OR Apache-2.0" [dependencies] critical-section = "1" futures-util = { version = "0.3.25", default-features = false } -rtic-common = { version = "1.0.0-alpha.0", path = "../rtic-common" } +rtic-common = { version = "1.0.0", path = "../rtic-common" } [dev-dependencies] parking_lot = "0.12" diff --git a/rtic/Cargo.toml b/rtic/Cargo.toml index c2f3045089..05c6362a70 100644 --- a/rtic/Cargo.toml +++ b/rtic/Cargo.toml @@ -22,7 +22,7 @@ name = "rtic" readme = "../README.md" repository = "https://github.com/rtic-rs/rtic" -version = "2.0.0-alpha.2" +version = "2.0.0" [package.metadata.docs.rs] features = ["rtic-macros/test-template"] @@ -35,8 +35,8 @@ cortex-m = { version = "0.7.0", optional = true } bare-metal = "1.0.0" #portable-atomic = { version = "0.3.19" } atomic-polyfill = "1" -rtic-monotonics = { path = "../rtic-monotonics", version = "1.0.0-alpha.1", optional = true } -rtic-macros = { path = "../rtic-macros", version = "2.0.0-alpha.2" } +rtic-monotonics = { path = "../rtic-monotonics", version = "1.0.0", optional = true } +rtic-macros = { path = "../rtic-macros", version = "2.0.0" } rtic-core = "1" critical-section = "1"