Skip to content

Commit 187d5a8

Browse files
authored
release: 0.5.1 (#139)
1 parent 4317cbc commit 187d5a8

3 files changed

Lines changed: 20 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@ 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.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.5.1 (2026 May 29)
9+
10+
### Fixed
11+
12+
- **[anodized] Removed a prototyping leftover from trait narrowing build-fail tests**.
13+
14+
### Changed
15+
16+
- **[anodized] Test suite cleanup for Clippy compliance** - Updated test code patterns and lint allowances in test files (#136).
17+
- **[workspace] Updated repository URLs after ownership transfer** - Crate metadata, README links/badges, and diagnostics issue links now point to `anodized-rs/anodized` (#138).
18+
19+
### Documentation
20+
21+
- **[anodized] README refinements** - Clarified project positioning, ecosystem fit, and relationship to existing efforts (#137).
22+
823
## 0.5.0 (2026 May 28)
924

1025
### Breaking Changes

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ members = [
99
resolver = "2"
1010

1111
[workspace.package]
12-
version = "0.5.0"
12+
version = "0.5.1"
1313
edition = "2024"
1414
license = "MIT OR Apache-2.0"
1515
repository = "https://github.com/anodized-rs/anodized"
@@ -27,9 +27,9 @@ keywords = [
2727
]
2828

2929
[workspace.dependencies]
30-
anodized-core = { version = "0.5.0", path = "crates/anodized-core" }
31-
anodized-logic = { version = "0.5.0", path = "crates/anodized-logic" }
32-
anodized-macros = { version = "0.5.0", path = "crates/anodized-macros" }
30+
anodized-core = { version = "0.5.1", path = "crates/anodized-core" }
31+
anodized-logic = { version = "0.5.1", path = "crates/anodized-logic" }
32+
anodized-macros = { version = "0.5.1", path = "crates/anodized-macros" }
3333
num-bigint = "0.4.6"
3434
proc-macro2 = { version = "1.0", features = ["span-locations"] }
3535
quote = "1.0"

crates/anodized/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Write preconditions, postconditions, loop invariants, and type refinements direc
3030

3131
```toml
3232
[dependencies]
33-
anodized = { version = "0.5.0" }
33+
anodized = { version = "0.5.1" }
3434
```
3535

3636
**2. Extend your code with specs.**

0 commit comments

Comments
 (0)