From 23540cbcf70408b6df14e5c5cd7cdbb82afe14ac Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Fri, 16 Jul 2021 08:37:51 -0700 Subject: [PATCH] sha1-asm v0.5.1 --- Cargo.lock | 4 +++- sha1/CHANGELOG.md | 31 +++++++++++++++++++++++++++++++ sha1/Cargo.toml | 2 +- 3 files changed, 35 insertions(+), 2 deletions(-) create mode 100644 sha1/CHANGELOG.md diff --git a/Cargo.lock b/Cargo.lock index ea86524..cee27d7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,8 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. # +version = 3 + [[package]] name = "cc" version = "1.0.61" @@ -16,7 +18,7 @@ dependencies = [ [[package]] name = "sha1-asm" -version = "0.5.0" +version = "0.5.1" dependencies = [ "cc", ] diff --git a/sha1/CHANGELOG.md b/sha1/CHANGELOG.md new file mode 100644 index 0000000..0eaa423 --- /dev/null +++ b/sha1/CHANGELOG.md @@ -0,0 +1,31 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## 0.5.1 (2021-07-16) +### Fixed +- Builds on iOS/macOS ([#38]) + +[#38]: https://github.com/RustCrypto/asm-hashes/pull/38 + +## 0.5.0 (2021-02-19) + +## 0.4.4 + +## 0.4.3 + +## 0.4.2 + +## 0.4.1 + +## 0.4.0 + +## 0.3.0 + +## 0.2.1 + +## 0.2.0 + +## 0.1.0 diff --git a/sha1/Cargo.toml b/sha1/Cargo.toml index 9279175..63a2414 100644 --- a/sha1/Cargo.toml +++ b/sha1/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sha1-asm" -version = "0.5.0" +version = "0.5.1" authors = ["RustCrypto Developers"] license = "MIT" description = "Assembly implementation of SHA-1 compression function"