Skip to content

Commit b23686b

Browse files
caseydcorral
authored andcommitted
Release 0.19.1 (ordinals#3864)
- Bump version: 0.19.0 β†’ 0.19.1 - Update changelog - Update changelog contributor credits - Update dependencies
1 parent 57419cc commit b23686b

File tree

6 files changed

+60
-51
lines changed

6 files changed

+60
-51
lines changed

β€ŽCHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Changelog
22
=========
33

4+
[0.19.1](https://github.com/ordinals/ord/releases/tag/0.19.1) - 2024-07-18
5+
--------------------------------------------------------------------------
6+
7+
### Changed
8+
- Commit twice to work around redb off-by-one bug ([#3856](https://github.com/ordinals/ord/pull/3856) by [casey](https://github.com/casey))
9+
10+
### Misc
11+
- Change test-bitcoincore-rpc to mockcore in README.md ([#3842](https://github.com/ordinals/ord/pull/3842) by [TheHeBoy](https://github.com/TheHeBoy))
12+
413
[0.19.0](https://github.com/ordinals/ord/releases/tag/0.19.0) - 2024-07-09
514
--------------------------------------------------------------------------
615

β€ŽCargo.lock

+43-43
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€ŽCargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "ord"
33
description = "β—‰ Ordinal wallet and block explorer"
4-
version = "0.19.0"
4+
version = "0.19.1"
55
license = "CC0-1.0"
66
edition = "2021"
77
autotests = false
@@ -51,7 +51,7 @@ ord-bitcoincore-rpc = "0.17.2"
5151
ordinals = { version = "0.0.9", path = "crates/ordinals" }
5252
redb = "2.0.0"
5353
regex = "1.6.0"
54-
reqwest = { version = "0.11.23", features = ["blocking", "json"] }
54+
reqwest = { version = "0.11.27", features = ["blocking", "json"] }
5555
rss = "2.0.1"
5656
rust-embed = "8.0.0"
5757
rustls = "0.22.0"
@@ -76,7 +76,7 @@ criterion = "0.5.1"
7676
executable-path = "1.0.0"
7777
nix = { version = "0.29.0", features = ["signal"] }
7878
pretty_assertions = "1.2.1"
79-
reqwest = { version = "0.11.10", features = ["blocking", "brotli", "json"] }
79+
reqwest = { version = "0.11.27", features = ["blocking", "brotli", "json"] }
8080
mockcore = { path = "crates/mockcore" }
8181
unindent = "0.2.1"
8282

β€Žcrates/audit-cache/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ edition = "2021"
55
publish = false
66

77
[dependencies]
8-
colored = "2.0.4"
9-
reqwest = { version = "0.11.22", features = ["blocking"] }
8+
colored = "2"
9+
reqwest = { version = "0.11.27", features = ["blocking"] }

β€Žcrates/audit-content-security-policy/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ edition = "2021"
55
publish = false
66

77
[dependencies]
8-
colored = "2.0.4"
9-
reqwest = { version = "0.11.22", features = ["blocking"] }
8+
colored = "2"
9+
reqwest = { version = "0.11.27", features = ["blocking"] }

β€Žcrates/mockcore/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jsonrpc-core = "18.0.0"
1515
jsonrpc-derive = "18.0.0"
1616
jsonrpc-http-server = "18.0.0"
1717
ord-bitcoincore-rpc = "0.17.2"
18-
reqwest = { version = "0.11.10", features = ["blocking"] }
18+
reqwest = { version = "0.11.27", features = ["blocking"] }
1919
serde = { version = "1.0.137", features = ["derive"] }
2020
serde_json = { version = "1.0.81" }
2121
tempfile = "3.2.0"

0 commit comments

Comments
Β (0)