Skip to content

Commit 3dcd1e4

Browse files
committed
hkd32 v0.1.0
1 parent e41ecea commit 3dcd1e4

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

hkd32/CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 0.1.0 (2019-07-21)
2+
3+
- Initial release

hkd32/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description = """
66
repeated applications of the Hash-based Message Authentication Code
77
(HMAC) construction.
88
"""
9-
version = "0.0.0" # Also update html_root_url in lib.rs when bumping this
9+
version = "0.1.0" # Also update html_root_url in lib.rs when bumping this
1010
authors = ["Tony Arcieri <[email protected]>"]
1111
license = "Apache-2.0"
1212
edition = "2018"
@@ -17,6 +17,7 @@ categories = ["cryptography", "no-std"]
1717
keywords = ["bip32", "derivation", "hd", "hmac", "key"]
1818

1919
[badges]
20+
maintenance = { status = "passively-maintained" }
2021
travis-ci = { repository = "iqlusioninc/crates", branch = "develop" }
2122

2223
[dependencies]

hkd32/README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
[![Docs][docs-image]][docs-link]
66
[![Apache 2.0 Licensed][license-image]][license-link]
77
![Rust 1.36+][rustc-image]
8-
[![forbid(unsafe_code)][unsafe-image]][unsafe-link]
98
[![Build Status][build-image]][build-link]
109
[![Gitter Chat][gitter-image]][gitter-link]
1110

@@ -54,8 +53,6 @@ without any additional terms or conditions.
5453
[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
5554
[license-link]: https://github.com/iqlusioninc/crates/blob/master/LICENSE
5655
[rustc-image]: https://img.shields.io/badge/rustc-1.36+-blue.svg
57-
[unsafe-image]: https://img.shields.io/badge/unsafe-forbidden-success.svg
58-
[unsafe-link]: https://internals.rust-lang.org/t/disabling-unsafe-by-default/7988
5956
[build-image]: https://travis-ci.com/iqlusioninc/crates.svg?branch=develop
6057
[build-link]: https://travis-ci.com/iqlusioninc/crates/
6158
[gitter-image]: https://badges.gitter.im/iqlusioninc/community.svg

hkd32/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
3434
#![no_std]
3535
#![deny(warnings, missing_docs, unused_qualifications, unsafe_code)]
36-
#![doc(html_root_url = "https://docs.rs/hkd32/0.0.0")]
36+
#![doc(html_root_url = "https://docs.rs/hkd32/0.1.0")]
3737

3838
#[cfg(feature = "alloc")]
3939
#[cfg_attr(test, macro_use)]

0 commit comments

Comments
 (0)