Skip to content

Commit

Permalink
Release 0.19.1 (ordinals#3864)
Browse files Browse the repository at this point in the history
- Bump version: 0.19.0 → 0.19.1
- Update changelog
- Update changelog contributor credits
- Update dependencies
  • Loading branch information
casey committed Jul 18, 2024
1 parent c27a214 commit d36c6cc
Show file tree
Hide file tree
Showing 6 changed files with 60 additions and 51 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Changelog
=========

[0.19.1](https://github.com/ordinals/ord/releases/tag/0.19.1) - 2024-07-18
--------------------------------------------------------------------------

### Changed
- Commit twice to work around redb off-by-one bug ([#3856](https://github.com/ordinals/ord/pull/3856) by [casey](https://github.com/casey))

### Misc
- Change test-bitcoincore-rpc to mockcore in README.md ([#3842](https://github.com/ordinals/ord/pull/3842) by [TheHeBoy](https://github.com/TheHeBoy))

[0.19.0](https://github.com/ordinals/ord/releases/tag/0.19.0) - 2024-07-09
--------------------------------------------------------------------------

Expand Down
86 changes: 43 additions & 43 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ord"
description = "◉ Ordinal wallet and block explorer"
version = "0.19.0"
version = "0.19.1"
license = "CC0-1.0"
edition = "2021"
autotests = false
Expand Down Expand Up @@ -51,7 +51,7 @@ ord-bitcoincore-rpc = "0.17.2"
ordinals = { version = "0.0.9", path = "crates/ordinals" }
redb = "2.0.0"
regex = "1.6.0"
reqwest = { version = "0.11.23", features = ["blocking", "json"] }
reqwest = { version = "0.11.27", features = ["blocking", "json"] }
rss = "2.0.1"
rust-embed = "8.0.0"
rustls = "0.22.0"
Expand All @@ -76,7 +76,7 @@ criterion = "0.5.1"
executable-path = "1.0.0"
nix = { version = "0.29.0", features = ["signal"] }
pretty_assertions = "1.2.1"
reqwest = { version = "0.11.10", features = ["blocking", "brotli", "json"] }
reqwest = { version = "0.11.27", features = ["blocking", "brotli", "json"] }
mockcore = { path = "crates/mockcore" }
unindent = "0.2.1"

Expand Down
4 changes: 2 additions & 2 deletions crates/audit-cache/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ edition = "2021"
publish = false

[dependencies]
colored = "2.0.4"
reqwest = { version = "0.11.22", features = ["blocking"] }
colored = "2"
reqwest = { version = "0.11.27", features = ["blocking"] }
4 changes: 2 additions & 2 deletions crates/audit-content-security-policy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ edition = "2021"
publish = false

[dependencies]
colored = "2.0.4"
reqwest = { version = "0.11.22", features = ["blocking"] }
colored = "2"
reqwest = { version = "0.11.27", features = ["blocking"] }
2 changes: 1 addition & 1 deletion crates/mockcore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jsonrpc-core = "18.0.0"
jsonrpc-derive = "18.0.0"
jsonrpc-http-server = "18.0.0"
ord-bitcoincore-rpc = "0.17.2"
reqwest = { version = "0.11.10", features = ["blocking"] }
reqwest = { version = "0.11.27", features = ["blocking"] }
serde = { version = "1.0.137", features = ["derive"] }
serde_json = { version = "1.0.81" }
tempfile = "3.2.0"

0 comments on commit d36c6cc

Please sign in to comment.