io: Bump version to 0.1.1

We attempted to release with the current 0.1.0 version forgetting that
we had previously released an empty crate with that version to reserve
the name on crates.io.

Bump the version to 0.1.1 and release the actual code.
This commit is contained in:
Tobin C. Harding 2024-02-18 09:39:28 +11:00
parent 422404f644
commit cf602583bd
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
6 changed files with 10 additions and 6 deletions

View File

@ -72,7 +72,7 @@ dependencies = [
[[package]]
name = "bitcoin-io"
version = "0.1.0"
version = "0.1.1"
[[package]]
name = "bitcoin-units"

View File

@ -71,7 +71,7 @@ dependencies = [
[[package]]
name = "bitcoin-io"
version = "0.1.0"
version = "0.1.1"
[[package]]
name = "bitcoin-units"

View File

@ -33,7 +33,7 @@ hashes = { package = "bitcoin_hashes", version = "0.13.0", default-features = fa
hex = { package = "hex-conservative", version = "0.1.1", default-features = false, features = ["alloc"] }
hex_lit = "0.1.1"
internals = { package = "bitcoin-internals", version = "0.2.0" }
io = { package = "bitcoin-io", version = "0.1", default-features = false, features = ["alloc"] }
io = { package = "bitcoin-io", version = "0.1.1", default-features = false, features = ["alloc"] }
secp256k1 = { version = "0.28.0", default-features = false, features = ["hashes", "alloc"] }
units = { package = "bitcoin-units", version = "0.1.0", default-features = false, features = ["alloc"] }

View File

@ -29,7 +29,7 @@ rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
hex = { package = "hex-conservative", version = "0.1.1", default-features = false }
bitcoin-io = { version = "0.1", default-features = false, optional = true }
bitcoin-io = { version = "0.1.1", default-features = false, optional = true }
schemars = { version = "0.8.3", default-features = false, optional = true }
serde = { version = "1.0", default-features = false, optional = true }

View File

@ -1,4 +1,4 @@
# 0.1 - Initial Release - 2023-01-18
# 0.1.1 - Initial Release - 2024-02-18
Create the `io` crate, add basic I/O traits, types, and implementations.
@ -13,3 +13,7 @@ Types:
- `Take`
- `Cursor`
- `Sink`
# 0.1.0 - Placeholder release
Empty crate to reserve the name on crates.io

View File

@ -1,6 +1,6 @@
[package]
name = "bitcoin-io"
version = "0.1.0"
version = "0.1.1"
authors = ["Matt Corallo <birchneutea@mattcorallo.com>"]
license = "CC0-1.0"
repository = "https://github.com/rust-bitcoin/rust-bitcoin"