Skip to content

Commit 9362fab

Browse files
authored
Merge pull request #2 from DanGould/rename-bitcoin_uri
Rename crate bitcoin_uri
2 parents 76db0d1 + 3958a2b commit 9362fab

File tree

4 files changed

+17
-8
lines changed

4 files changed

+17
-8
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# bitcoin_uri Changelog
2+
3+
## 0.1.0
4+
5+
- Fork from [Kixunil/bip21 @ `eae7201`](https://github.com/Kixunil/bip21/commit/eae72026cc5838bb169949641948b8c1cef99cbe) v0.5.0.
6+
- Bump MSRV to 1.63.0 https://github.com/payjoin/bitcoin_uri/pull/1
7+
- Fix escaping of '#' in parameter values and handling of unescaped '#' in uri https://github.com/payjoin/bitcoin_uri/pull/3
8+
- Fix unicode on exactly index 7 must not panic https://github.com/payjoin/bitcoin_uri/pull/4
9+
- Make this fix rust 1.63.0 compatible https://github.com/payjoin/bitcoin_uri/pull/5

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
2-
name = "bip21"
3-
version = "0.5.0"
4-
authors = ["Martin Habovstiak <martin.habovstiak@gmail.com>"]
2+
name = "bitcoin_uri"
3+
version = "0.1.0"
4+
authors = ["Dan Gould <d@ngould.dev>"]
55
edition = "2018"
6-
description = "Rust-idiomatic, compliant, flexible and performant BIP21 crate."
7-
repository = "https://github.com/Kixunil/bip21"
6+
description = "Rust-idiomatic, compliant, flexible and performant bitcoin URI crate."
7+
repository = "https://github.com/payjoin/bitcoin_uri"
88
readme = "README.md"
99
keywords = ["bitcoin", "bip21", "parsing", "newtypes"]
1010
categories = ["cryptography::cryptocurrencies", "encoding", "rust-patterns", "value-formatting"]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Rust implementation of BIP21
1+
# Rust implementation of BIP21 bitcoin URIs
22

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

55
## About
66

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Rust-idiomatic, compliant, flexible and performant BIP21 crate.
1+
//! Rust-idiomatic, compliant, flexible and performant bitcoin URI crate.
22
//!
33
//! **Important:** while lot of work went into polishing the crate it's still considered
44
//! early-development!

0 commit comments

Comments
 (0)