Skip to content

Commit 909c1de

Browse files
authored
chore: release (#33)
1 parent 1c021eb commit 909c1de

File tree

9 files changed

+32
-6
lines changed

9 files changed

+32
-6
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ resolver = "3"
44

55
[workspace.dependencies]
66
# internal deps
7-
rudy-db = { version = "0.0.7", path = "rudy-db" }
8-
rudy-dwarf = { version = "0.3.1", path = "crates/rudy-dwarf" }
7+
rudy-db = { version = "0.0.8", path = "rudy-db" }
8+
rudy-dwarf = { version = "0.4.0", path = "crates/rudy-dwarf" }
99
rudy-types = { version = "0.4", path = "crates/rudy-types" }
1010
rudy-parser = { version = "0.4", path = "crates/rudy-parser" }
1111
rudy-test-examples = { path = "crates/rudy-test-examples" }

crates/rudy-dwarf/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.4.0](https://github.com/samscott89/rudy/compare/rudy-dwarf-v0.3.1...rudy-dwarf-v0.4.0) - 2025-07-08
11+
12+
### Other
13+
14+
- Make all type resolution shallow ([#31](https://github.com/samscott89/rudy/pull/31))
15+
- Add a shiny new benchmark + tutorial ([#32](https://github.com/samscott89/rudy/pull/32))
16+
1017
## [0.3.1](https://github.com/samscott89/rudy/compare/rudy-dwarf-v0.3.0...rudy-dwarf-v0.3.1) - 2025-07-07
1118

1219
### Other

crates/rudy-dwarf/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rudy-dwarf"
3-
version = "0.3.1"
3+
version = "0.4.0"
44
edition = "2021"
55
description = "DWARF debug information parsing and querying for Rust debugging tools"
66
license = "MIT"

crates/rudy-types/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.4.2](https://github.com/samscott89/rudy/compare/rudy-types-v0.4.1...rudy-types-v0.4.2) - 2025-07-08
11+
12+
### Other
13+
14+
- update Cargo.toml dependencies
15+
1016
## [0.4.1](https://github.com/samscott89/rudy/compare/rudy-types-v0.4.0...rudy-types-v0.4.1) - 2025-07-07
1117

1218
### Other

crates/rudy-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rudy-types"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
edition = "2024"
55
description = "Type layouts of common Rust types for Rudy"
66
license = "MIT"

rudy-db/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.0.8](https://github.com/samscott89/rudy/compare/rudy-db-v0.0.7...rudy-db-v0.0.8) - 2025-07-08
11+
12+
### Other
13+
14+
- Make all type resolution shallow ([#31](https://github.com/samscott89/rudy/pull/31))
15+
- Add a shiny new benchmark + tutorial ([#32](https://github.com/samscott89/rudy/pull/32))
16+
1017
## [0.0.7](https://github.com/samscott89/rudy/compare/rudy-db-v0.0.6...rudy-db-v0.0.7) - 2025-07-07
1118

1219
### Other

rudy-db/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rudy-db"
3-
version = "0.0.7"
3+
version = "0.0.8"
44
edition = "2024"
55
authors = ["Sam Scott"]
66
description = "A user-friendly library for interacting with debugging information of Rust compiled artifacts using DWARF"

rudy-lldb/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.7](https://github.com/samscott89/rudy/compare/rudy-lldb-v0.1.6...rudy-lldb-v0.1.7) - 2025-07-08
11+
12+
### Other
13+
14+
- Add a shiny new benchmark + tutorial ([#32](https://github.com/samscott89/rudy/pull/32))
15+
1016
## [0.1.6](https://github.com/samscott89/rudy/compare/rudy-lldb-v0.1.5...rudy-lldb-v0.1.6) - 2025-07-07
1117

1218
### Other

rudy-lldb/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rudy-lldb"
3-
version = "0.1.6"
3+
version = "0.1.7"
44
edition = "2024"
55
default-run = "rudy-lldb-server"
66
description = "Rudy LLDB server for debugging Rust programs"

0 commit comments

Comments
 (0)