Skip to content

Commit

Permalink
chore(release): publish v1.2.1 (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
leahjlou authored Jun 17, 2024
2 parents 243424c + feb7429 commit 75b2bbc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stacks-devnet-api"
version = "1.2.0"
version = "1.2.1"
edition = "2021"
authors = ["Micaiah Reid <[email protected]>"]
description = "The Stacks Devnet API runs a server that can be used to deploy, delete, manage, and make requests to Stacks Devnets run on Kubernetes."
Expand Down Expand Up @@ -45,4 +45,4 @@ rand = "0.8.5"
serial_test = "2.0.0"

[features]
k8s_tests = []
k8s_tests = []
4 changes: 3 additions & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,9 @@ impl StacksDevnetConfig {
TransactionSpecification::EmulatedContractCall(_) | TransactionSpecification::EmulatedContractPublish(_) => {
return Err(format!("devnet deployment plans do not support emulated-contract-calls or emulated-contract-publish types"))
}
_ => {}
TransactionSpecification::ContractCall(_) => {},
TransactionSpecification::BtcTransfer(_) => {},
TransactionSpecification::StxTransfer(_) => {},
}
}
}
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1506,6 +1506,7 @@ impl StacksDevnetApiK8sManager {
("V2_POX_MIN_AMOUNT_USTX".into(), "90000000260".into()),
("NODE_ENV".into(), "production".into()),
("STACKS_API_LOG_LEVEL".into(), "debug".into()),
("FAUCET_PRIVATE_KEY".into(), config.devnet_config.faucet_secret_key_hex.clone()),
]);
self.deploy_configmap(
StacksDevnetConfigmap::StacksBlockchainApi,
Expand Down

0 comments on commit 75b2bbc

Please sign in to comment.