diff --git a/Cargo-minimal.lock b/Cargo-minimal.lock index 1272ebdcff..f40e3b7bc7 100644 --- a/Cargo-minimal.lock +++ b/Cargo-minimal.lock @@ -47,7 +47,7 @@ dependencies = [ [[package]] name = "bitcoin-dogecoin" -version = "0.32.5-doge.0" +version = "0.32.5-doge.1" dependencies = [ "base58ck", "base64", diff --git a/Cargo-recent.lock b/Cargo-recent.lock index a577965186..d0e7947e9a 100644 --- a/Cargo-recent.lock +++ b/Cargo-recent.lock @@ -46,7 +46,7 @@ dependencies = [ [[package]] name = "bitcoin-dogecoin" -version = "0.32.5-doge.0" +version = "0.32.5-doge.1" dependencies = [ "base58ck", "base64", diff --git a/README.md b/README.md index c322c80556..4a0dfc01e2 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@

Rust Dogecoin

- Rust Dogecoin logo by DFINITY Foundation, see license and source files under /logo + Rust Dogecoin logo by DFINITY Foundation, see license and source files under /logo

Library with support for de/serialization, parsing and executing on data-structures and network messages related to Bitcoin and Dogecoin. diff --git a/bitcoin/CHANGELOG.md b/bitcoin/CHANGELOG.md index 9d5d47aa54..85d0dcc5e5 100644 --- a/bitcoin/CHANGELOG.md +++ b/bitcoin/CHANGELOG.md @@ -3,6 +3,11 @@ 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.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +# 0.32.5-doge.1 - 2025-11-10 + +- Fix build doc on [docs.rs](https://docs.rs/crate/bitcoin-dogecoin/latest) +- Add rust-dogecoin logo on githubusercontent + # 0.32.5-doge.0 - 2025-11-03 Initial release of the rust-dogecoin crate, a fork of rust-bitcoin adapted for Dogecoin. diff --git a/bitcoin/Cargo.toml b/bitcoin/Cargo.toml index ea4fda180e..cc8d31d9e1 100644 --- a/bitcoin/Cargo.toml +++ b/bitcoin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitcoin-dogecoin" -version = "0.32.5-doge.0" +version = "0.32.5-doge.1" license = "Apache-2.0 OR CC0-1.0" repository = "https://github.com/dfinity/rust-dogecoin" description = "General purpose library for using and interoperating with Bitcoin and Dogecoin." diff --git a/bitcoin/src/lib.rs b/bitcoin/src/lib.rs index a863e435e2..a8d7c05847 100644 --- a/bitcoin/src/lib.rs +++ b/bitcoin/src/lib.rs @@ -31,7 +31,7 @@ #![cfg_attr(all(not(feature = "std"), not(test)), no_std)] // Experimental features we need. -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_notable_trait))] #![cfg_attr(bench, feature(test))] // Coding conventions. #![warn(missing_docs)]