Skip to content

Commit 5299b86

Browse files
committed
0.10.3 - removes required_tf function call
1 parent 83a9072 commit 5299b86

File tree

6 files changed

+29
-34
lines changed

6 files changed

+29
-34
lines changed

Cargo.lock

Lines changed: 25 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contracts/reflect/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ backtraces = ["cosmwasm-std/backtraces"]
2020
cosmwasm-schema = "1.1"
2121
cosmwasm-std = { version = "1.1", features = ["staking", "stargate"] }
2222
cosmwasm-storage = "1.1"
23-
token-bindings = { version = "0.10.2", path = "../../packages/bindings" }
23+
token-bindings = { version = "0.10.3", path = "../../packages/bindings" }
2424
schemars = "0.8"
2525
serde = { version = "1.0", default-features = false, features = ["derive"] }
2626
thiserror = "1.0"

contracts/tokenfactory/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ cosmwasm-schema = "1.1"
4444
cosmwasm-std = "1.2.3"
4545
cosmwasm-storage = "1.1"
4646
cw-storage-plus = "1.0.1"
47-
token-bindings = { version = "0.10.2", path = "../../packages/bindings" }
47+
token-bindings = { version = "0.10.3", path = "../../packages/bindings" }
4848
cw2 = "1.0.1"
4949
schemars = "0.8"
5050
serde = { version = "1.0", default-features = false, features = ["derive"] }

packages/bindings-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ license = "Apache-2.0"
1010

1111
[dependencies]
1212
itertools = "0.10"
13-
token-bindings = { version = "0.10.2", path = "../bindings" }
13+
token-bindings = { version = "0.10.3", path = "../bindings" }
1414
cosmwasm-std = "1.1"
1515
schemars = "0.8"
1616
serde = { version = "1.0", default-features = false, features = ["derive"] }

packages/bindings/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "token-bindings"
3-
version = "0.10.2"
3+
version = "0.10.3"
44
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>", "Reece Williams <reecepbcups@users.noreply.github.com>"]
55
edition = "2018"
66
description = "Bindings for CustomMsg and CustomQuery for the Juno blockchain"

packages/bindings/src/lib.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,3 @@ pub use query::{
1010
TokenFactoryQuery, TokenQuery,
1111
};
1212
pub use types::{DenomUnit, Metadata, Params};
13-
14-
// This is a signal, such that any contract that imports these helpers will only run on
15-
// blockchains that support token_factory feature
16-
#[no_mangle]
17-
extern "C" fn requires_token_factory() {}

0 commit comments

Comments
 (0)