From 880ce11a9bba56f16b3fec829c3b136e5b87239e Mon Sep 17 00:00:00 2001 From: Nils Hasenbanck Date: Fri, 9 Aug 2024 19:09:28 +0200 Subject: [PATCH] Release version 0.2.0 --- CHANGELOG.md | 24 +++++++++++++++++++++--- Cargo.toml | 2 +- 2 files changed, 22 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 702c28d..ef7d752 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,21 +5,39 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.2.0] - 2024-08-09 + +### Added + +- Fixed various documentation errors. +- Added the RISC-V vector crypto extension based backend. +- Support x86 based target (32-bit) +- Add features to select the PRNG version of the TLS instance. + +### Fixed + +- Properly detect available target features when cross compiling. + +### Removed + +- The verification binary is not published anymore. +- Removed the RISC-V scalar crypto extension based backend. + ## [0.1.3] - 2024-08-04 -### Updated +### Changed - Fixed various documentation errors. ## [0.1.2] - 2024-08-04 -### Updated +### Changed - Add missing feature toggle for proper rendering on docs.rs ## [0.1.1] - 2024-08-04 -### Updated +### Changed - Updated the documentation to properly render on docs.rs diff --git a/Cargo.toml b/Cargo.toml index 55466b1..29e474f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" readme = "README.md" documentation = "https://docs.rs/rand_aes" repository = "https://github.com/hasenbanck/rand_aes" -version = "0.1.3" +version = "0.2.0" edition = "2021" rust-version = "1.80"