v2.0 release

This commit is contained in:
Emil Fresk 2023-05-25 08:27:58 +02:00
parent 1e4977152a
commit c3884e212c
8 changed files with 21 additions and 21 deletions

View file

@ -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]

View file

@ -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"]

View file

@ -1,6 +1,6 @@
[package]
name = "rtic-common"
version = "1.0.0-alpha.0"
version = "1.0.0"
edition = "2021"
authors = [

View file

@ -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

View file

@ -1,6 +1,6 @@
[package]
name = "rtic-monotonics"
version = "1.0.0-alpha.2"
version = "1.0.0"
edition = "2021"
authors = [
@ -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"

View file

@ -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"] }

View file

@ -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"

View file

@ -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"