From ab2f367e6f4503e072db56d1b9e5204563912eaa Mon Sep 17 00:00:00 2001 From: bbaldino Date: Wed, 10 Apr 2024 09:24:23 -0700 Subject: [PATCH] update version to 0.1.6 (#71) * update version to 0.1.6 * update changelog --- CHANGELOG.md | 10 ++++++++-- Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) 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"