Skip to content

Commit

Permalink
0.10.3 - removes required_tf function call
Browse files Browse the repository at this point in the history
  • Loading branch information
Reecepbcups committed Aug 3, 2023
1 parent 83a9072 commit 5299b86
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 34 deletions.
50 changes: 25 additions & 25 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 contracts/reflect/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ backtraces = ["cosmwasm-std/backtraces"]
cosmwasm-schema = "1.1"
cosmwasm-std = { version = "1.1", features = ["staking", "stargate"] }
cosmwasm-storage = "1.1"
token-bindings = { version = "0.10.2", path = "../../packages/bindings" }
token-bindings = { version = "0.10.3", path = "../../packages/bindings" }
schemars = "0.8"
serde = { version = "1.0", default-features = false, features = ["derive"] }
thiserror = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion contracts/tokenfactory/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ cosmwasm-schema = "1.1"
cosmwasm-std = "1.2.3"
cosmwasm-storage = "1.1"
cw-storage-plus = "1.0.1"
token-bindings = { version = "0.10.2", path = "../../packages/bindings" }
token-bindings = { version = "0.10.3", path = "../../packages/bindings" }
cw2 = "1.0.1"
schemars = "0.8"
serde = { version = "1.0", default-features = false, features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion packages/bindings-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license = "Apache-2.0"

[dependencies]
itertools = "0.10"
token-bindings = { version = "0.10.2", path = "../bindings" }
token-bindings = { version = "0.10.3", path = "../bindings" }
cosmwasm-std = "1.1"
schemars = "0.8"
serde = { version = "1.0", default-features = false, features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion packages/bindings/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "token-bindings"
version = "0.10.2"
version = "0.10.3"
authors = ["Ethan Frey <[email protected]>", "Reece Williams <[email protected]>"]
edition = "2018"
description = "Bindings for CustomMsg and CustomQuery for the Juno blockchain"
Expand Down
5 changes: 0 additions & 5 deletions packages/bindings/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,3 @@ pub use query::{
TokenFactoryQuery, TokenQuery,
};
pub use types::{DenomUnit, Metadata, Params};

// This is a signal, such that any contract that imports these helpers will only run on
// blockchains that support token_factory feature
#[no_mangle]
extern "C" fn requires_token_factory() {}

0 comments on commit 5299b86

Please sign in to comment.