Skip to content

Commit 005378b

Browse files
jonathanpallantVeykril
authored andcommitted
Drop the rc.1 suffix.
1 parent 03fc7bc commit 005378b

File tree

12 files changed

+19
-19
lines changed

12 files changed

+19
-19
lines changed

decoder/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ license = "MIT OR Apache-2.0"
77
name = "defmt-decoder"
88
readme = "README.md"
99
repository = "https://github.com/knurling-rs/defmt"
10-
version = "1.0.0-rc.1"
10+
version = "1.0.0"
1111

1212
[dependencies]
1313
byteorder = "1"
1414
colored = "2"
15-
defmt-parser = { version = "=1.0.0-rc.1", path = "../parser" }
15+
defmt-parser = { version = "=1.0.0", path = "../parser" }
1616
ryu = "1"
1717
nom = "7"
1818

defmt-03/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ name = "defmt"
1414
readme = "README.md"
1515
repository = "https://github.com/knurling-rs/defmt"
1616
homepage = "https://knurling.ferrous-systems.com/"
17-
version = "0.3.100-rc.1"
17+
version = "0.3.100"
1818

1919
[dependencies]
20-
defmt10 = { package = "defmt", version = "1.0.0-rc.1", path = "../defmt" }
20+
defmt10 = { package = "defmt", version = "1", path = "../defmt" }
2121

2222
[features]
2323
alloc = ["defmt10/alloc"]

defmt/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ name = "defmt"
1515
readme = "README.md"
1616
repository = "https://github.com/knurling-rs/defmt"
1717
homepage = "https://knurling.ferrous-systems.com/"
18-
version = "1.0.0-rc.1"
18+
version = "1.0.0"
1919

2020
[features]
2121
alloc = []
@@ -45,7 +45,7 @@ unstable-test = [ "defmt-macros/unstable-test" ]
4545
[dependencies]
4646
# There is exactly one version of defmt-macros supported in this version of
4747
# defmt. Although, multiple versions of defmt might use the *same* defmt-macros.
48-
defmt-macros = { path = "../macros", version = "=1.0.0-rc.1" }
48+
defmt-macros = { path = "../macros", version = "=1.0.0" }
4949
bitflags = "1"
5050

5151
[dev-dependencies]

firmware/defmt-itm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ version = "0.4.0"
1313
[dependencies]
1414
cortex-m = "0.7"
1515
critical-section = "1.2.0"
16-
defmt = { version = "1.0.0-rc.1", path = "../../defmt" }
16+
defmt = { version = "1", path = "../../defmt" }

firmware/defmt-rtt/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ license = "MIT OR Apache-2.0"
88
name = "defmt-rtt"
99
readme = "README.md"
1010
repository = "https://github.com/knurling-rs/defmt"
11-
version = "1.0.0-rc.1"
11+
version = "1.0.0"
1212

1313
[features]
1414
disable-blocking-mode = []
1515

1616
[dependencies]
17-
defmt = { version = "1.0.0-rc.1", path = "../../defmt" }
17+
defmt = { version = "1", path = "../../defmt" }
1818
critical-section = "1.2"

firmware/defmt-semihosting/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ version = "0.2.0"
1313
[dependencies]
1414
cortex-m = "0.7"
1515
critical-section = "1.2"
16-
defmt = { version = "1.0.0-rc.1", path = "../../defmt" }
16+
defmt = { version = "1", path = "../../defmt" }
1717
semihosting = { version = "0.1.19", features = ["stdio"] }
1818

1919
[features]

firmware/defmt-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ version = "0.4.0"
1313
[dependencies]
1414
cortex-m-rt = "0.7"
1515
cortex-m-semihosting = "0.5"
16-
defmt = { version = "1.0.0-rc.1", path = "../../defmt" }
16+
defmt = { version = "1", path = "../../defmt" }
1717
defmt-test-macros = { version = "=0.3.1", path = "macros" }

firmware/panic-probe/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ license = "MIT OR Apache-2.0"
88
name = "panic-probe"
99
readme = "README.md"
1010
repository = "https://github.com/knurling-rs/defmt"
11-
version = "1.0.0-rc.1"
11+
version = "1.0.0"
1212

1313
[dependencies]
1414
cortex-m = "0.7"
15-
defmt = { version = "1.0.0-rc.1", path = "../../defmt", optional = true }
15+
defmt = { version = "1", path = "../../defmt", optional = true }
1616
rtt-target = { version = "0.5", optional = true }
1717

1818

macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0"
77
name = "defmt-macros"
88
readme = "README.md"
99
repository = "https://github.com/knurling-rs/defmt"
10-
version = "1.0.0-rc.1"
10+
version = "1.0.0"
1111

1212
[lib]
1313
proc-macro = true
@@ -17,7 +17,7 @@ proc-macro = true
1717
unstable-test = []
1818

1919
[dependencies]
20-
defmt-parser = { version = "=1.0.0-rc.1", path = "../parser" }
20+
defmt-parser = { version = "=1.0.0", path = "../parser" }
2121
proc-macro-error2 = "2"
2222
proc-macro2 = "1"
2323
quote = "1"

parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0"
77
name = "defmt-parser"
88
readme = "README.md"
99
repository = "https://github.com/knurling-rs/defmt"
10-
version = "1.0.0-rc.1"
10+
version = "1.0.0"
1111

1212
[dependencies]
1313
thiserror = "2"

0 commit comments

Comments
 (0)