Skip to content

Commit 780ae40

Browse files
committed
Create new release
1 parent 1e0e6f0 commit 780ae40

File tree

8 files changed

+19
-15
lines changed

8 files changed

+19
-15
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@
22

33
## Unreleased
44

5+
## 0.10.0 (24-07-25)
6+
57
- Updated a boatload of dependencies
68
- Started filtering many useless variables from the list of static variables
79
- This means this isn't spammed full with defmt stuff anymore
10+
- All subcrates now use the same version
811

912
## Cli 0.1.8, Capture 0.5.0, Core 0.4.0, Trace 0.4.0, Capture-probe 0.4.0 (21-08-23)
1013

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[workspace]
22
resolver = "2"
3+
package.version = "0.10.0"
34

45
members = [
56
"capture",

capture-probe/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stackdump-capture-probe"
3-
version = "0.4.0"
3+
version.workspace = true
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
homepage = "https://github.com/tweedegolf/stackdump"
@@ -14,5 +14,5 @@ description = "Crate for capturing stack dumps of embedded devices with a debugg
1414

1515
[dependencies]
1616
probe-rs = "0.29.1"
17-
stackdump-core = { version = "0.4.0", path = "../core" }
17+
stackdump-core = { version = "0.10.0", path = "../core" }
1818

capture/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stackdump-capture"
3-
version = "0.5.0"
3+
version.workspace = true
44
edition = "2021"
55
rust-version = "1.88"
66
license = "MIT OR Apache-2.0"
@@ -12,5 +12,5 @@ categories = ["embedded", "no-std"]
1212
description = "Crate for capturing stack dumps"
1313

1414
[dependencies]
15-
stackdump-core = { version = "0.4.0", path = "../core", default-features = false }
15+
stackdump-core = { version = "0.10.0", path = "../core", default-features = false }
1616
arrayvec = { version = "0.7.2", default-features = false }

cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stackdump-cli"
3-
version = "0.1.8"
3+
version.workspace = true
44
edition = "2021"
55
rust-version = "1.88"
66
license = "MIT OR Apache-2.0"
@@ -15,8 +15,8 @@ description = "Crate for capturing stack dumps"
1515

1616
[dependencies]
1717
clap = { version = "4.2.1", features = ["derive", "color", "suggestions"] }
18-
stackdump-trace = { version = "0.4.0", path = "../trace" }
19-
stackdump-capture-probe = { version = "0.4.0", path = "../capture-probe" }
18+
stackdump-trace = { version = "0.10.0", path = "../trace" }
19+
stackdump-capture-probe = { version = "0.10.0", path = "../capture-probe" }
2020
env_logger = "0.11.8"
2121
log = "0.4.14"
2222
textwrap = { version = "0.16.0", features = ["terminal_size"] }

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stackdump-core"
3-
version = "0.4.0"
3+
version.workspace = true
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
homepage = "https://github.com/tweedegolf/stackdump"

trace/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stackdump-trace"
3-
version = "0.4.0"
3+
version.workspace = true
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
homepage = "https://github.com/tweedegolf/stackdump"
@@ -15,7 +15,7 @@ addr2line = "0.25.0"
1515
gimli = "0.32.0"
1616
object = "0.37.1"
1717
bitvec = "1.0.0"
18-
stackdump-core = { version = "0.4.0", path = "../core" }
18+
stackdump-core = { version = "0.10.0", path = "../core" }
1919
thiserror = "2.0.12"
2020
log = "0.4.14"
2121
trees = "0.4.2"

0 commit comments

Comments
 (0)