Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename crate bitcoin_uri #2

Merged
merged 2 commits into from
Dec 2, 2024
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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# bitcoin_uri Changelog

## 0.1.0

- Fork from [Kixunil/bip21 @ `eae7201`](https://github.com/Kixunil/bip21/commit/eae72026cc5838bb169949641948b8c1cef99cbe) v0.5.0.
- Bump MSRV to 1.63.0 https://github.com/payjoin/bitcoin_uri/pull/1
- Fix escaping of '#' in parameter values and handling of unescaped '#' in uri https://github.com/payjoin/bitcoin_uri/pull/3
- Fix unicode on exactly index 7 must not panic https://github.com/payjoin/bitcoin_uri/pull/4
- Make this fix rust 1.63.0 compatible https://github.com/payjoin/bitcoin_uri/pull/5
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "bip21"
version = "0.5.0"
authors = ["Martin Habovstiak <[email protected]>"]
name = "bitcoin_uri"
version = "0.1.0"
authors = ["Dan Gould <[email protected]>"]
edition = "2018"
description = "Rust-idiomatic, compliant, flexible and performant BIP21 crate."
repository = "https://github.com/Kixunil/bip21"
description = "Rust-idiomatic, compliant, flexible and performant bitcoin URI crate."
repository = "https://github.com/payjoin/bitcoin_uri"
readme = "README.md"
keywords = ["bitcoin", "bip21", "parsing", "newtypes"]
categories = ["cryptography::cryptocurrencies", "encoding", "rust-patterns", "value-formatting"]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Rust implementation of BIP21
# Rust implementation of BIP21 bitcoin URIs

Rust-idiomatic, compliant, flexible and performant BIP21 crate.
Rust-idiomatic, compliant, flexible and performant bitcoin URI crate.

## About

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! Rust-idiomatic, compliant, flexible and performant BIP21 crate.
//! Rust-idiomatic, compliant, flexible and performant bitcoin URI crate.
//!
//! **Important:** while lot of work went into polishing the crate it's still considered
//! early-development!
Expand Down
Loading