Skip to content

Commit 8de591e

Browse files
authored
chore: release (#44)
1 parent 94b247b commit 8de591e

File tree

11 files changed

+43
-7
lines changed

11 files changed

+43
-7
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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" }
1212
rudy-types = { version = "0.4", path = "crates/rudy-types" }
1313
rudy-parser = { version = "0.4", path = "crates/rudy-parser" }
1414
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.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

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.4.1"
3+
version = "0.4.2"
44
edition = "2021"
55
description = "DWARF debug information parsing and querying for Rust debugging tools"
66
license = "MIT"

crates/rudy-parser/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.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

crates/rudy-parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "rudy-parser"
33
description = "Simple Rust type and expression parser for Rudy"
44
license = "MIT"
5-
version = "0.4.0"
5+
version = "0.4.1"
66
edition = "2024"
77
rust-version.workspace = true
88

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

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.2"
3+
version = "0.4.3"
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.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

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.9"
3+
version = "0.0.10"
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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)