Skip to content

Commit e5334a1

Browse files
bip32 v0.4.0 (#996)
1 parent c4f0378 commit e5334a1

File tree

6 files changed

+27
-6
lines changed

6 files changed

+27
-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.

bip32/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 0.4.0 (2022-05-10)
8+
### Changed
9+
- Bump `pbkdf2` to 0.11.0 ([#983])
10+
- Bump `hmac` to v0.12 ([#994])
11+
- Bump `k256` to v0.11 ([#994])
12+
- Bump `p256` to v0.11 ([#994])
13+
- Bump `pbkdf2` to v0.10 ([#994])
14+
- Bump `sha2` to v0.10 ([#994])
15+
- Replace `ripemd160` dependency with `ripemd` ([#994])
16+
- MSRV 1.57 ([#994], [#995])
17+
- Use const panic for `Prefix::from_parts_unchecked` ([#995])
18+
19+
[#983]: https://github.com/iqlusioninc/crates/pull/983
20+
[#994]: https://github.com/iqlusioninc/crates/pull/994
21+
[#995]: https://github.com/iqlusioninc/crates/pull/995
22+
723
## 0.3.0 (2022-01-05)
824
### Changed
925
- Rust 2021 edition upgrade ([#889])

bip32/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bip32"
3-
version = "0.4.0-pre"
3+
version = "0.4.0"
44
description = """
55
BIP32 hierarchical key derivation implemented in a generic, no_std-friendly
66
manner. Supports deriving keys using the pure Rust k256 crate or the

bip32/LICENSE-MIT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 iqlusion
3+
Copyright (c) 2022 iqlusion
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

bip32/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ a minor version bump.
3232

3333
## License
3434

35-
Copyright © 2020-2021 iqlusion
35+
Copyright © 2020-2022 iqlusion
3636

3737
**bip32.rs** is distributed under the terms of either the MIT license
3838
or the Apache License (Version 2.0), at your option.

bip32/src/lib.rs

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
#![no_std]
22
#![cfg_attr(docsrs, feature(doc_cfg))]
33
#![doc = include_str!("../README.md")]
4-
#![forbid(unsafe_code, clippy::unwrap_used)]
5-
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
4+
#![forbid(unsafe_code)]
5+
#![warn(
6+
clippy::unwrap_used,
7+
missing_docs,
8+
rust_2018_idioms,
9+
unused_qualifications
10+
)]
611

712
//! ## Backends
813
//! This crate provides a generic implementation of BIP32 which can be used

0 commit comments

Comments
 (0)