Skip to content

Commit f7dd44d

Browse files
authored
chore: prep 0.1.2 release (#20)
## Description `0.1.1` was yanked due to #19 ## Breaking Changes <!-- Optional, if there are any breaking changes document them, including how to migrate older code. --> ## Notes & open questions <!-- Any notes, remarks or open questions you have to make about the PR. --> ## Change checklist - [ ] Self-review. - [ ] Documentation updates following the [style guide](https://rust-lang.github.io/rfcs/1574-more-api-documentation-conventions.html#appendix-a-full-conventions-text), if relevant. - [ ] Tests if relevant. - [ ] All breaking changes documented.
1 parent 7c36206 commit f7dd44d

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
# Changelog
22

3+
## [0.1.2](https://github.com/n0-computer/n0-error/compare/v0.1.1..0.1.2) - 2025-11-12
4+
5+
### 🐛 Bug Fixes
6+
7+
- Remove anyhow from default features again ([#19](https://github.com/n0-computer/n0-error/issues/19)) - ([7c36206](https://github.co
8+
m/n0-computer/n0-error/commit/7c362066fd902b228cc104c1a8be987f5a23b8e4))
9+
310
## [0.1.1](https://github.com/n0-computer/n0-error/compare/v0.1.0..0.1.1) - 2025-11-12
411

12+
*This release was yanked because it inadvertently added the anyhow feature to the default features.*
13+
514
### ⛰️ Features
615

716
- Impl StackError for Arc<T: StackError> ([#15](https://github.com/n0-computer/n0-error/issues/15)) - ([e094af6](https://github.com/n0-computer/n0-error/commit/e094af6171657f65103979116a2978ca8898aa60))

Cargo.lock

Lines changed: 2 additions & 2 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 = "n0-error"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2024"
55
readme = "README.md"
66
description = "ergonomic errors with call-site location"
@@ -11,7 +11,7 @@ keywords = ["error", "location", "ergonomic"]
1111

1212
[dependencies]
1313
anyhow = { version = "1.0.100", optional = true }
14-
n0-error-macros = { path = "n0-error-macros", version = "0.1.1" }
14+
n0-error-macros = { path = "n0-error-macros", version = "0.1.2" }
1515
spez = "0.1.2"
1616

1717
[dev-dependencies]

n0-error-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "n0-error-macros"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
description = "macros for n0-error"
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)