Skip to content

Commit

Permalink
chore: update version
Browse files Browse the repository at this point in the history
  • Loading branch information
hugocaillard committed Dec 21, 2023
1 parent 7c1affc commit 84455e6
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 14 deletions.
15 changes: 8 additions & 7 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion components/chainhook-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ redis = "0.21.5"
serde-redis = "0.12.0"
hex = "0.4.3"
rand = "0.8.5"
chainhook-sdk = { version = "0.11.0", default-features = false, features = [
chainhook-sdk = { version = "0.12.0", default-features = false, features = [
"zeromq",
], path = "../chainhook-sdk" }
hiro-system-kit = "0.3.1"
Expand Down
4 changes: 2 additions & 2 deletions components/chainhook-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chainhook-sdk"
version = "0.11.0"
version = "0.12.0"
description = "Stateless Transaction Indexing Engine for Stacks and Bitcoin"
license = "GPL-3.0"
edition = "2021"
Expand All @@ -19,7 +19,7 @@ clarinet-utils = "1.0.0"
hiro-system-kit = { version = "0.3.1", optional = true }
# clarinet-utils = { version = "1", path = "../../../clarinet/components/clarinet-utils" }
# hiro-system-kit = { version = "0.1.0", path = "../../../clarinet/components/hiro-system-kit" }
chainhook-types = { version = "1.2.0", path = "../chainhook-types-rs" }
chainhook-types = { version = "1.3.0", path = "../chainhook-types-rs" }
rocket = { version = "=0.5.0-rc.3", features = ["json"] }
bitcoincore-rpc = "0.16.0"
bitcoincore-rpc-json = "0.16.0"
Expand Down
7 changes: 4 additions & 3 deletions components/chainhook-sdk/src/indexer/stacks/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -744,9 +744,10 @@ pub fn get_tx_description(
TransactionPayload::Coinbase(_, _, _) => {
(format!("coinbase"), StacksTransactionKind::Coinbase)
}
TransactionPayload::TenureChange(_) => {
(format!("tenure change"), StacksTransactionKind::TenureChange)
}
TransactionPayload::TenureChange(_) => (
format!("tenure change"),
StacksTransactionKind::TenureChange,
),
TransactionPayload::PoisonMicroblock(_, _) => {
unimplemented!()
}
Expand Down
2 changes: 1 addition & 1 deletion components/chainhook-types-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "chainhook-types"
description = "Bitcoin and Stacks data schemas, based on the Rosetta specification"
license = "MIT"
version = "1.2.0"
version = "1.3.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down

0 comments on commit 84455e6

Please sign in to comment.