Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo-minimal.lock
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ dependencies = [

[[package]]
name = "bitcoin-dogecoin"
version = "0.32.5-doge.0"
version = "0.32.5-doge.1"
dependencies = [
"base58ck",
"base64",
Expand Down
2 changes: 1 addition & 1 deletion Cargo-recent.lock
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ dependencies = [

[[package]]
name = "bitcoin-dogecoin"
version = "0.32.5-doge.0"
version = "0.32.5-doge.1"
dependencies = [
"base58ck",
"base64",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div align="center">
<h1>Rust Dogecoin</h1>

<img alt="Rust Dogecoin logo by DFINITY Foundation, see license and source files under /logo" src="./logo/[email protected]" width="720" />
<img alt="Rust Dogecoin logo by DFINITY Foundation, see license and source files under /logo" src="https://raw.githubusercontent.com/dfinity/rust-dogecoin/doge-master/logo/[email protected]" width="720" />

<p>Library with support for de/serialization, parsing and executing on data-structures
and network messages related to Bitcoin and Dogecoin.
Expand Down
5 changes: 5 additions & 0 deletions bitcoin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion bitcoin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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."
Expand Down
2 changes: 1 addition & 1 deletion bitcoin/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down