From de4162ba4269f88d2ab37265c081293e34fcef12 Mon Sep 17 00:00:00 2001 From: DanGould Date: Mon, 2 Dec 2024 11:19:57 -0500 Subject: [PATCH 1/2] Rename crate bitcoin_uri --- Cargo.toml | 10 +++++----- README.md | 4 ++-- src/lib.rs | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e2b2e1e..80d10de 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,10 +1,10 @@ [package] -name = "bip21" -version = "0.5.0" -authors = ["Martin Habovstiak "] +name = "bitcoin_uri" +version = "0.1.0" +authors = ["Dan Gould "] 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"] diff --git a/README.md b/README.md index 65bbca4..bdbc8f8 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/src/lib.rs b/src/lib.rs index 25af98c..c47a0ec 100755 --- a/src/lib.rs +++ b/src/lib.rs @@ -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! From 3958a2b3b607186fdc4092f8a885b0dafbe02766 Mon Sep 17 00:00:00 2001 From: DanGould Date: Mon, 2 Dec 2024 11:55:27 -0500 Subject: [PATCH 2/2] Add CHANGELOG.md --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..0afdbf9 --- /dev/null +++ b/CHANGELOG.md @@ -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