diff --git a/CHANGELOG.md b/CHANGELOG.md index 16ab630..1c49b7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,14 +6,20 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] ### Added - - Added `TryFrom` fallible conversion. ### Changed - - Made `new` a `const fn` ### Deprecated ### Removed ### Fixed ### Security +## [0.1.6] - 2024-04-03 +### Added + - Support conversions for u1 + - Implement std::error::Error for TryFromIntError + - Add BITS associated constant +### Changed + - Mask values on write instead of read + ## [0.1.3] - 2018-10-29 ### Added - Added `i1` and `u1` types. diff --git a/Cargo.toml b/Cargo.toml index 8cb6868..c4a0bac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ux" -version = "0.1.3" +version = "0.1.6" authors = ["Kjetil Kjeka "] edition = "2021"