Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ categories = [ "science" ]
license = "MIT OR Apache-2.0"
name = "num-derive"
repository = "https://github.com/rust-num/num-derive"
version = "0.5.0"
version = "0.5.1"
readme = "README.md"
exclude = ["/ci/*", "/.github/*"]
edition = "2021"
Expand Down
10 changes: 0 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,6 @@ enum Color {
}
```

## Optional features

- **`full-syntax`** — Enables `num-derive` to handle enum discriminants
represented by complex expressions. Usually can be avoided by
[utilizing constants], so only use this feature if namespace pollution is
undesired and [compile time doubling] is acceptable.

[utilizing constants]: https://github.com/rust-num/num-derive/pull/3#issuecomment-359044704
[compile time doubling]: https://github.com/rust-num/num-derive/pull/3#issuecomment-359172588

## Releases

Release notes are available in [RELEASES.md](RELEASES.md).
Expand Down
4 changes: 4 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Release 0.5.1 (2026-07-20)

- Remove mention of the old "full-syntax" feature.

# Release 0.5.0 (2026-07-20)

- [Upgrade to `syn v3`.][71]
Expand Down
Loading