Skip to content
This repository was archived by the owner on Nov 26, 2024. It is now read-only.

Commit ee6525b

Browse files
committed
Bump all crate versions
In preparation for release bump the version numbers to `v0.2.0`. Also add changelogs for all crates.
1 parent 5deb7ed commit ee6525b

File tree

9 files changed

+31
-77
lines changed

9 files changed

+31
-77
lines changed

Cargo-minimal.lock

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ dependencies = [
8686

8787
[[package]]
8888
name = "bitcoind-json-rpc-client"
89-
version = "0.1.0"
89+
version = "0.2.0"
9090
dependencies = [
9191
"bitcoin",
9292
"bitcoind-json-rpc-types",
@@ -98,7 +98,7 @@ dependencies = [
9898

9999
[[package]]
100100
name = "bitcoind-json-rpc-types"
101-
version = "0.1.0"
101+
version = "0.2.0"
102102
dependencies = [
103103
"bitcoin",
104104
"bitcoin-internals",
@@ -253,7 +253,3 @@ name = "unicode-ident"
253253
version = "1.0.12"
254254
source = "registry+https://github.com/rust-lang/crates.io-index"
255255
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
256-
257-
[[patch.unused]]
258-
name = "bitcoind-json-rpc-regtest"
259-
version = "0.1.0"

Cargo-recent.lock

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ dependencies = [
8686

8787
[[package]]
8888
name = "bitcoind-json-rpc-client"
89-
version = "0.1.0"
89+
version = "0.2.0"
9090
dependencies = [
9191
"bitcoin",
9292
"bitcoind-json-rpc-types",
@@ -98,7 +98,7 @@ dependencies = [
9898

9999
[[package]]
100100
name = "bitcoind-json-rpc-types"
101-
version = "0.1.0"
101+
version = "0.2.0"
102102
dependencies = [
103103
"bitcoin",
104104
"bitcoin-internals",
@@ -253,7 +253,3 @@ name = "unicode-ident"
253253
version = "1.0.12"
254254
source = "registry+https://github.com/rust-lang/crates.io-index"
255255
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
256-
257-
[[patch.unused]]
258-
name = "bitcoind-json-rpc-regtest"
259-
version = "0.1.0"

client/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# 0.2.0 - 2024-06-13
2+
3+
- Use Bitcoin Core 0.17.1 (0.17.2 seems to not exist and have been a mistake).
4+
5+
# 0.1.0 - 2024-06-13
6+
7+
Initial release.
8+

client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bitcoind-json-rpc-client"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = [
55
"Steven Roose <[email protected]>",
66
"Jean Pierre Dudey <[email protected]>",
@@ -23,7 +23,7 @@ client-sync = ["jsonrpc"]
2323

2424
[dependencies]
2525
bitcoin = { version = "0.32.0", default-features = false, features = ["std", "serde"] }
26-
json = { package = "bitcoind-json-rpc-types", version = "0.1.0", default-features = false, features = [] }
26+
json = { package = "bitcoind-json-rpc-types", version = "0.2.0", default-features = false, features = [] }
2727
log = "0.4"
2828
serde = { version = "1.0.103", default-features = false, features = [ "derive", "alloc" ] }
2929
serde_json = { version = "1.0.117" }

integration_test/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ edition = "2021"
4646

4747
[dependencies]
4848
bitcoin = { version = "0.32.0", default-features = false, features = ["std", "serde"] }
49-
client = { package = "bitcoind-json-rpc-client", version = "0.1.0", default-features = false, features = ["client-sync"] }
50-
bitcoind = { package = "bitcoind-json-rpc-regtest", version = "0.1.0", default-features = false, features = [] }
49+
client = { package = "bitcoind-json-rpc-client", version = "0.2.0", default-features = false, features = ["client-sync"] }
50+
bitcoind = { package = "bitcoind-json-rpc-regtest", version = "0.2.0", default-features = false, features = [] }
5151
rand = "0.8.5"
5252
env_logger = "0.9.0"
5353

json/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# 0.2.0 - 2024-06-13
2+
3+
- Use Bitcoin Core 0.17.1 (0.17.2 seems to not exist and have been a mistake).
4+
- Fix `GetTransactionDetail` conversion to use a signed bitcoin amount.
5+
6+
# 0.1.0 - 2024-06-13
7+
8+
Initial release.

json/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bitcoind-json-rpc-types"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = [
55
"Steven Roose <[email protected]>",
66
"Jean Pierre Dudey <[email protected]>",

regtest/CHANGELOG.md

Lines changed: 4 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,8 @@
1-
# Changelog
1+
# 0.2.0 - 2024-06-13
22

3-
## 0.36.0
3+
- Use Bitcoin Core 0.17.1 (0.17.2 seems to not exist and have been a mistake).
44

5-
- Remove range dependencies for `bitcoincore-rpc` and depend on the
6-
latest version `v0.19.0` [#163](https://github.com/rust-bitcoin/bitcoind/pull/163).
5+
# 0.1.0 - 2024-06-13
76

8-
## 0.35.2
7+
Initial release, this is an import of `bitcoind v.036.0`.
98

10-
- Use range dependencies for `bitcoincore-rpc` and `bitcoin_hashes`
11-
12-
## Release 0.35.1
13-
14-
- Bump MSRV to 1.56.1
15-
- Add `BITCOIND_SKIP_DOWNLOAD` build feature
16-
17-
## Release 0.34.2
18-
19-
- Support Bitcoin Core 26.0
20-
21-
## Release 0.34.1
22-
23-
- Optionally enable ZMQ
24-
25-
## Release 0.34.0
26-
27-
- upgrade bitcoincore dep to 0.18.0 and with it bitcoin to 0.31.0
28-
29-
## Release 0.28.0
30-
31-
### Changed
32-
33-
- bump `ureq`'s version to `2.5.0`
34-
- bump `flate2`'s version to `1.0.24`
35-
- bump `filetime`'s version to `0.2.18`
36-
37-
## Release 0.27.1
38-
39-
### Changed
40-
41-
- use bitcoin_hashes 0.11 also for build dep
42-
43-
## Release 0.27.0
44-
45-
### Added
46-
47-
- Introduced CHANGELOG
48-
- Supports windows OS
49-
- Provide errors if `rpcuser` and `rpcpassword` are provided
50-
51-
### Changed
52-
53-
- use bitcoin dep to 0.29.1
54-
55-
### Fixed
56-
57-
- fix bitcoin 0.23 on MacOS X
58-
- fix test flakiness
59-
60-
### Removed
61-
62-
- removed `datadir` from `ConnectionParams`, use equivalent `workdir()`

regtest/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bitcoind-json-rpc-regtest"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Riccardo Casatta <[email protected]>", "Tobin C. Harding <[email protected]>"]
55
license = "MIT"
66
repository = "https://github.com/tcharding/rust-bitcoind-json-rpc"
@@ -13,7 +13,7 @@ rust-version = "1.56.1"
1313
exclude = ["tests", "contrib"]
1414

1515
[dependencies]
16-
bitcoind-json-rpc-client = { version = "0.1", features = ["client-sync"] }
16+
bitcoind-json-rpc-client = { version = "0.2", features = ["client-sync"] }
1717
log = "0.4"
1818
which = "4.2.5"
1919
anyhow = "1.0.66"

0 commit comments

Comments
 (0)