Skip to content

Commit 0cff45e

Browse files
Release v0.7.0 (#42)
1 parent 2fdce77 commit 0cff45e

5 files changed

Lines changed: 18 additions & 15 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [0.7.0-pre] - Unreleased
8+
## [Unreleased]
9+
10+
## [0.7.0] - 2025-11-06
911

1012
### Added
1113

@@ -87,7 +89,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8789

8890
- Initial release
8991

90-
[0.7.0-pre]: https://github.com/rootcause-rs/rootcause/compare/v0.6.0...HEAD
92+
[Unreleased]: https://github.com/rootcause-rs/rootcause/compare/v0.7.0...HEAD
93+
[0.7.0]: https://github.com/rootcause-rs/rootcause/compare/v0.6.0...v0.7.0
9194
[0.6.0]: https://github.com/rootcause-rs/rootcause/compare/v0.5.0...v0.6.0
9295
[0.5.0]: https://github.com/rootcause-rs/rootcause/compare/v0.4.3...v0.5.0
9396
[0.4.3]: https://github.com/rootcause-rs/rootcause/compare/v0.4.2...v0.4.3

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rootcause"
3-
version = "0.7.0-pre"
3+
version = "0.7.0"
44
edition = "2024"
55
license = "MIT/Apache-2.0"
66
description = "A flexible, ergonomic, and inspectable error reporting library for Rust"
@@ -29,7 +29,7 @@ backtrace = { version = "0.3.76", optional = true, features = ["cpp_demangle"] }
2929
regex = { version = "1.12.2", optional = true }
3030

3131
# Internal dependencies
32-
rootcause-internals = { path = "rootcause-internals", version = "=0.7.0-pre" }
32+
rootcause-internals = { path = "rootcause-internals", version = "=0.7.0" }
3333

3434
[dev-dependencies]
3535
indexmap = "2.12.0"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ Add this to your `Cargo.toml`:
226226

227227
```toml
228228
[dependencies]
229-
rootcause = "0.6.0"
229+
rootcause = "0.7.0"
230230
```
231231

232232
Use `Report` as your error type:
@@ -293,7 +293,7 @@ This separation ensures that most unsafe operations are contained in a single, a
293293

294294
## Stability and Roadmap
295295

296-
**Current status:** Pre-1.0 (v0.6.0)
296+
**Current status:** Pre-1.0 (v0.7.0)
297297

298298
rootcause follows semantic versioning. As a 0.x library, breaking changes may occur in minor version bumps (0.x → 0.x+1). We're actively refining the API based on real-world usage and focused on reaching 1.0.
299299

rootcause-internals/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rootcause-internals"
3-
version = "0.7.0-pre"
3+
version = "0.7.0"
44
edition = "2024"
55
license = "MIT/Apache-2.0"
66
description = "Internals for the rootcause crate"

0 commit comments

Comments
 (0)