Merge rust-bitcoin/rust-bitcoin#2485: io: Bump version to 0.1.1

cf602583bd io: Bump version to 0.1.1 (Tobin C. Harding)

Pull request description:

  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.

ACKs for top commit:
  Kixunil:
    ACK cf602583bd
  apoelstra:
    ACK cf602583bd

Tree-SHA512: 2efd4c72c135ba3e593a9854d459bacfd8ce1d8c1c18afad9288206cf5d2db6f6c77499912d9c1da40a93ebc8ae463e5cd15b5234bfc09b13f57923767a1f5dd
This commit is contained in:
Andrew Poelstra 2024-02-18 14:13:56 +00:00
commit 14e3bc6620
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
6 changed files with 10 additions and 6 deletions

View File

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

View File

@ -71,7 +71,7 @@ dependencies = [
[[package]] [[package]]
name = "bitcoin-io" name = "bitcoin-io"
version = "0.1.0" version = "0.1.1"
[[package]] [[package]]
name = "bitcoin-units" 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 = { package = "hex-conservative", version = "0.1.1", default-features = false, features = ["alloc"] }
hex_lit = "0.1.1" hex_lit = "0.1.1"
internals = { package = "bitcoin-internals", version = "0.2.0" } 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"] } secp256k1 = { version = "0.28.0", default-features = false, features = ["hashes", "alloc"] }
units = { package = "bitcoin-units", version = "0.1.0", default-features = false, features = ["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] [dependencies]
hex = { package = "hex-conservative", version = "0.1.1", default-features = false } 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 } schemars = { version = "0.8.3", default-features = false, optional = true }
serde = { version = "1.0", 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. Create the `io` crate, add basic I/O traits, types, and implementations.
@ -13,3 +13,7 @@ Types:
- `Take` - `Take`
- `Cursor` - `Cursor`
- `Sink` - `Sink`
# 0.1.0 - Placeholder release
Empty crate to reserve the name on crates.io

View File

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