From 7344fb663c99550007b460403909006acd55a7fe Mon Sep 17 00:00:00 2001 From: bbaldino Date: Tue, 2 Apr 2024 20:18:48 -0700 Subject: [PATCH 1/2] update version to 0.1.6 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" From 8658153bd9214ae02e0357bac0e4955eb41c1121 Mon Sep 17 00:00:00 2001 From: bbaldino Date: Wed, 3 Apr 2024 09:10:18 -0700 Subject: [PATCH 2/2] update changelog --- CHANGELOG.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 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.