File tree Expand file tree Collapse file tree 11 files changed +43
-7
lines changed
Expand file tree Collapse file tree 11 files changed +43
-7
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ rust-version = "1.89.0"
77
88[workspace .dependencies ]
99# internal deps
10- rudy-db = { version = " 0.0.9 " , path = " rudy-db" }
11- rudy-dwarf = { version = " 0.4.1 " , path = " crates/rudy-dwarf" }
10+ rudy-db = { version = " 0.0.10 " , path = " rudy-db" }
11+ rudy-dwarf = { version = " 0.4.2 " , path = " crates/rudy-dwarf" }
1212rudy-types = { version = " 0.4" , path = " crates/rudy-types" }
1313rudy-parser = { version = " 0.4" , path = " crates/rudy-parser" }
1414rudy-test-examples = { path = " crates/rudy-test-examples" }
Original file line number Diff line number Diff 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.2] ( https://github.com/samscott89/rudy/compare/rudy-dwarf-v0.4.1...rudy-dwarf-v0.4.2 ) - 2025-08-09
11+
12+ ### Other
13+
14+ - Set rust-version ([ #45 ] ( https://github.com/samscott89/rudy/pull/45 ) )
15+ - fix compiler warnings on nightly ([ #42 ] ( https://github.com/samscott89/rudy/pull/42 ) )
16+
1017## [ 0.4.1] ( https://github.com/samscott89/rudy/compare/rudy-dwarf-v0.4.0...rudy-dwarf-v0.4.1 ) - 2025-07-26
1118
1219### Other
Original file line number Diff line number Diff line change 11[package ]
22name = " rudy-dwarf"
3- version = " 0.4.1 "
3+ version = " 0.4.2 "
44edition = " 2021"
55description = " DWARF debug information parsing and querying for Rust debugging tools"
66license = " MIT"
Original file line number Diff line number Diff 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.1] ( https://github.com/samscott89/rudy/compare/rudy-parser-v0.4.0...rudy-parser-v0.4.1 ) - 2025-08-09
11+
12+ ### Other
13+
14+ - Set rust-version ([ #45 ] ( https://github.com/samscott89/rudy/pull/45 ) )
15+
1016## [ 0.4.0] ( https://github.com/samscott89/rudy/compare/rudy-parser-v0.3.0...rudy-parser-v0.4.0 ) - 2025-07-07
1117
1218### Other
Original file line number Diff line number Diff line change 22name = " rudy-parser"
33description = " Simple Rust type and expression parser for Rudy"
44license = " MIT"
5- version = " 0.4.0 "
5+ version = " 0.4.1 "
66edition = " 2024"
77rust-version.workspace = true
88
Original file line number Diff line number Diff 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.3] ( https://github.com/samscott89/rudy/compare/rudy-types-v0.4.2...rudy-types-v0.4.3 ) - 2025-08-09
11+
12+ ### Other
13+
14+ - Set rust-version ([ #45 ] ( https://github.com/samscott89/rudy/pull/45 ) )
15+
1016## [ 0.4.2] ( https://github.com/samscott89/rudy/compare/rudy-types-v0.4.1...rudy-types-v0.4.2 ) - 2025-07-08
1117
1218### Other
Original file line number Diff line number Diff line change 11[package ]
22name = " rudy-types"
3- version = " 0.4.2 "
3+ version = " 0.4.3 "
44edition = " 2024"
55description = " Type layouts of common Rust types for Rudy"
66license = " MIT"
Original file line number Diff line number Diff 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.10] ( https://github.com/samscott89/rudy/compare/rudy-db-v0.0.9...rudy-db-v0.0.10 ) - 2025-08-09
11+
12+ ### Other
13+
14+ - Set rust-version ([ #45 ] ( https://github.com/samscott89/rudy/pull/45 ) )
15+ - fix compiler warnings on nightly ([ #42 ] ( https://github.com/samscott89/rudy/pull/42 ) )
16+
1017## [ 0.0.9] ( https://github.com/samscott89/rudy/compare/rudy-db-v0.0.8...rudy-db-v0.0.9 ) - 2025-07-26
1118
1219### Added
Original file line number Diff line number Diff line change 11[package ]
22name = " rudy-db"
3- version = " 0.0.9 "
3+ version = " 0.0.10 "
44edition = " 2024"
55authors = [" Sam Scott" ]
66description = " A user-friendly library for interacting with debugging information of Rust compiled artifacts using DWARF"
Original file line number Diff line number Diff line change @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 0.1.9] ( https://github.com/samscott89/rudy/compare/rudy-lldb-v0.1.8...rudy-lldb-v0.1.9 ) - 2025-08-09
11+
12+ ### Added
13+
14+ - * (rudy-lldb)* add ` --yes ` flag to ` install ` command ([ #41 ] ( https://github.com/samscott89/rudy/pull/41 ) )
15+
16+ ### Other
17+
18+ - Set rust-version ([ #45 ] ( https://github.com/samscott89/rudy/pull/45 ) )
19+
1020## [ 0.1.8] ( https://github.com/samscott89/rudy/compare/rudy-lldb-v0.1.7...rudy-lldb-v0.1.8 ) - 2025-07-26
1121
1222### Added
You can’t perform that action at this time.
0 commit comments