Skip to content

Commit 59e3734

Browse files
committed
chore: Release
1 parent 6720fcd commit 59e3734

File tree

24 files changed

+41
-41
lines changed

24 files changed

+41
-41
lines changed

asset-registry/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-asset-registry"
33
description = "Registry for (foreign) assets"
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/asset-registry"
55
license = "Apache-2.0"
6-
version = "1.1.0"
6+
version = "1.2.1"
77
authors = ["Interlay Ltd, etc"]
88
edition = "2021"
99

@@ -27,7 +27,7 @@ xcm-builder = { workspace = true }
2727
xcm-executor = { workspace = true }
2828

2929
# orml
30-
orml-traits = { path = "../traits", version = "1.1.0", default-features = false }
30+
orml-traits = { path = "../traits", version = "1.2.1", default-features = false }
3131

3232
# for runtime-benchmarks
3333
polkadot-runtime-common = { workspace = true, optional = true }

auction/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-auction"
33
description = "Auction module that implements `Auction` trait."
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/auction"
55
license = "Apache-2.0"
6-
version = "1.1.0"
6+
version = "1.2.1"
77
authors = ["Acala Developers"]
88
edition = "2021"
99

@@ -17,7 +17,7 @@ frame-system = { workspace = true }
1717
sp-runtime = { workspace = true }
1818
sp-std = { workspace = true }
1919

20-
orml-traits = { path = "../traits", version = "1.1.0", default-features = false }
20+
orml-traits = { path = "../traits", version = "1.2.1", default-features = false }
2121

2222
[dev-dependencies]
2323
sp-core = { workspace = true, features = ["std"] }

authority/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-authority"
33
description = "Utility pallet to perform ROOT calls in a PoA network"
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/auction"
55
license = "Apache-2.0"
6-
version = "1.1.0"
6+
version = "1.2.1"
77
authors = ["Acala Developers"]
88
edition = "2021"
99

benchmarking/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-benchmarking"
33
description = "Provide macro to benchmark Substrate runtime."
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/benchmarking"
55
license = "Apache-2.0"
6-
version = "1.1.0"
6+
version = "1.2.1"
77
authors = ["Laminar Developers <[email protected]>"]
88
edition = "2021"
99

build-script-utils/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-build-script-utils"
33
description = "Crate with utility functions for `build.rs` scripts."
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/build-script-utils"
55
license = "Apache-2.0"
6-
version = "1.1.0"
6+
version = "1.2.1"
77
authors = ["Parity Technologies <[email protected]>", "Laminar Developers <[email protected]>"]
88
edition = "2021"
99

currencies/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-currencies"
33
description = "Provide `MultiCurrency` implementation using `pallet-balances` and `orml-tokens` module."
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/currencies"
55
license = "Apache-2.0"
6-
version = "1.1.0"
6+
version = "1.2.1"
77
authors = ["Laminar Developers <[email protected]>"]
88
edition = "2021"
99

@@ -18,8 +18,8 @@ sp-io = { workspace = true }
1818
sp-runtime = { workspace = true }
1919
sp-std = { workspace = true }
2020

21-
orml-traits = { path = "../traits", version = "1.1.0", default-features = false }
22-
orml-utilities = { path = "../utilities", version = "1.1.0", default-features = false }
21+
orml-traits = { path = "../traits", version = "1.2.1", default-features = false }
22+
orml-utilities = { path = "../utilities", version = "1.2.1", default-features = false }
2323

2424
[dev-dependencies]
2525
pallet-balances = { workspace = true, features = ["std"] }

gradually-update/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-gradually-update"
33
description = "Provides way to adjust numeric parameter gradually over a period of time."
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/gradually-update"
55
license = "Apache-2.0"
6-
version = "1.1.0"
6+
version = "1.2.1"
77
authors = ["Laminar Developers <[email protected]>"]
88
edition = "2021"
99

nft/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-nft"
33
description = "Non-fungible token pallet provides basic functions to create and manager NFT"
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/nft"
55
license = "Apache-2.0"
6-
version = "1.1.0"
6+
version = "1.2.1"
77
authors = ["Acala Developers"]
88
edition = "2021"
99

oracle/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-oracle"
33
description = "Oracle module that makes off-chain data available on-chain."
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/oracle"
55
license = "Apache-2.0"
6-
version = "1.1.0"
6+
version = "1.2.1"
77
authors = ["Laminar Developers <[email protected]>"]
88
edition = "2021"
99

@@ -20,8 +20,8 @@ sp-runtime = { workspace = true }
2020
sp-std = { workspace = true }
2121
frame-benchmarking = { workspace = true, optional = true }
2222

23-
orml-traits = { path = "../traits", version = "1.1.0", default-features = false }
24-
orml-utilities = { path = "../utilities", version = "1.1.0", default-features = false }
23+
orml-traits = { path = "../traits", version = "1.2.1", default-features = false }
24+
orml-utilities = { path = "../utilities", version = "1.2.1", default-features = false }
2525

2626
[dev-dependencies]
2727
sp-core = { workspace = true }

oracle/runtime-api/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "orml-oracle-runtime-api"
3-
version = "1.1.0"
3+
version = "1.2.1"
44
authors = ["Laminar Developers <[email protected]>"]
55
edition = "2021"
66
license = "Apache-2.0"

parameters/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-parameters"
33
description = "Offer a centra place to store and configure parameters."
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/parameters"
55
license = "Apache-2.0"
6-
version = "1.1.0"
6+
version = "1.2.1"
77
authors = ["Acala Developers"]
88
edition = "2021"
99

@@ -18,7 +18,7 @@ sp-runtime = { workspace = true }
1818
sp-core = { workspace = true }
1919
sp-std = { workspace = true }
2020

21-
orml-traits = { path = "../traits", version = "1.1.0", default-features = false }
21+
orml-traits = { path = "../traits", version = "1.2.1", default-features = false }
2222

2323
[dev-dependencies]
2424
sp-core = { workspace = true, features = ["std"] }

payments/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
authors = ["Virto Network <[email protected]>"]
33
edition = '2021'
44
name = "orml-payments"
5-
version = "1.1.0"
5+
version = "1.2.1"
66
license = "Apache-2.0"
77
homepage = "https://github.com/virto-network/virto-node"
88
repository = "https://github.com/virto-network/virto-node"
@@ -20,7 +20,7 @@ frame-system = { workspace = true }
2020
sp-runtime = { workspace = true }
2121
sp-std = { workspace = true }
2222

23-
orml-traits = {path = "../traits", version = "1.1.0", default-features = false }
23+
orml-traits = {path = "../traits", version = "1.2.1", default-features = false }
2424

2525
[dev-dependencies]
2626
sp-core = { workspace = true }

rate-limit/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-rate-limit"
33
description = "Provides way to config rate limiter for limit some operation."
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/rate-limit"
55
license = "Apache-2.0"
6-
version = "1.1.0"
6+
version = "1.2.1"
77
authors = ["Laminar Developers <[email protected]>"]
88
edition = "2021"
99

@@ -19,8 +19,8 @@ sp-io = { workspace = true }
1919
sp-runtime = { workspace = true }
2020
sp-std = { workspace = true }
2121

22-
orml-traits = { path = "../traits", version = "1.1.0", default-features = false }
23-
orml-utilities = { path = "../utilities", version = "1.1.0", default-features = false }
22+
orml-traits = { path = "../traits", version = "1.2.1", default-features = false }
23+
orml-utilities = { path = "../utilities", version = "1.2.1", default-features = false }
2424

2525
[dev-dependencies]
2626
pallet-timestamp = { workspace = true, features = ["std"] }

rewards/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-rewards"
33
description = "Store and manage shares and rewards"
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/rewards"
55
license = "Apache-2.0"
6-
version = "1.1.0"
6+
version = "1.2.1"
77
authors = ["Acala Developers"]
88
edition = "2021"
99

@@ -19,7 +19,7 @@ sp-io = { workspace = true }
1919
sp-runtime = { workspace = true, features = ["serde"] }
2020
sp-std = { workspace = true }
2121

22-
orml-traits = { path = "../traits", version = "1.1.0", default-features = false }
22+
orml-traits = { path = "../traits", version = "1.2.1", default-features = false }
2323

2424
[dev-dependencies]
2525
sp-core = { workspace = true, features = ["std"] }

tokens/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-tokens"
33
description = "Fungible tokens module that implements `MultiCurrency` trait."
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/tokens"
55
license = "Apache-2.0"
6-
version = "1.1.0"
6+
version = "1.2.1"
77
authors = ["Laminar Developers <[email protected]>"]
88
edition = "2021"
99

@@ -19,7 +19,7 @@ sp-arithmetic = { workspace = true }
1919
sp-runtime = { workspace = true }
2020
sp-std = { workspace = true }
2121

22-
orml-traits = { path = "../traits", version = "1.1.0", default-features = false }
22+
orml-traits = { path = "../traits", version = "1.2.1", default-features = false }
2323

2424
[dev-dependencies]
2525
pallet-elections-phragmen = { workspace = true, features = ["std"] }

tokens/runtime-api/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "orml-tokens-runtime-api"
3-
version = "1.1.0"
3+
version = "1.2.1"
44
authors = ["Laminar Developers <[email protected]>"]
55
edition = "2021"
66
license = "Apache-2.0"

traits/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-traits"
33
description = "Shared traits including `BasicCurrency`, `MultiCurrency`, `Auction` and more."
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/traits"
55
license = "Apache-2.0"
6-
version = "1.1.0"
6+
version = "1.2.1"
77
authors = ["Laminar Developers <[email protected]>"]
88
edition = "2021"
99

@@ -23,7 +23,7 @@ frame-support = { workspace = true }
2323

2424
xcm = { workspace = true }
2525

26-
orml-utilities = { path = "../utilities", version = "1.1.0", default-features = false }
26+
orml-utilities = { path = "../utilities", version = "1.2.1", default-features = false }
2727

2828
[features]
2929
default = [ "std" ]

unknown-tokens/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-unknown-tokens"
33
description = "Unknown tokens module that implements `UnknownAsset` trait."
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/unknown-tokens"
55
license = "Apache-2.0"
6-
version = "1.1.0"
6+
version = "1.2.1"
77
authors = ["Acala Developers"]
88
edition = "2021"
99

@@ -18,7 +18,7 @@ sp-std = { workspace = true }
1818

1919
xcm = { workspace = true }
2020

21-
orml-xcm-support = { path = "../xcm-support", version = "1.1.0", default-features = false }
21+
orml-xcm-support = { path = "../xcm-support", version = "1.2.1", default-features = false }
2222

2323
[dev-dependencies]
2424
sp-core = { workspace = true, features = ["std"] }

utilities/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-utilities"
33
description = "Various utilities including `FixedU128` and `LinkedList`."
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/utilities"
55
license = "Apache-2.0"
6-
version = "1.1.0"
6+
version = "1.2.1"
77
authors = ["Laminar Developers <[email protected]>"]
88
edition = "2021"
99

vesting/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-vesting"
33
description = "Provides scheduled balance locking mechanism, in a *graded vesting* way."
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/vesting"
55
license = "Apache-2.0"
6-
version = "1.1.0"
6+
version = "1.2.1"
77
authors = ["Laminar Developers <[email protected]>"]
88
edition = "2021"
99

xcm-mock-message-queue/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-xcm-mock-message-queue"
33
description = "XCM Mock Message Qeueu for XCM Simulator tests"
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/xcm-mock-message-queue"
55
license = "Apache-2.0"
6-
version = "1.1.0"
6+
version = "1.2.1"
77
authors = ["Acala Developers"]
88
edition = "2021"
99

xcm-support/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-xcm-support"
33
description = "Supporting module for XCM integration."
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/xcm-support"
55
license = "Apache-2.0"
6-
version = "1.1.0"
6+
version = "1.2.1"
77
authors = ["Acala Developers"]
88
edition = "2021"
99

@@ -17,7 +17,7 @@ sp-std = { workspace = true }
1717
xcm = { workspace = true }
1818
xcm-executor = { workspace = true }
1919

20-
orml-traits = { path = "../traits", version = "1.1.0", default-features = false }
20+
orml-traits = { path = "../traits", version = "1.2.1", default-features = false }
2121

2222
[features]
2323
default = [ "std" ]

xcm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-xcm"
33
description = "XCM message helpers."
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/xcm"
55
license = "Apache-2.0"
6-
version = "1.1.0"
6+
version = "1.2.1"
77
authors = ["Acala Developers"]
88
edition = "2021"
99

xtokens/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-xtokens"
33
description = "Cross-chain token transfer."
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/xtokens"
55
license = "Apache-2.0"
6-
version = "1.1.0"
6+
version = "1.2.1"
77
authors = ["Acala Developers"]
88
edition = "2021"
99

@@ -26,8 +26,8 @@ xcm = { workspace = true }
2626
xcm-executor = { workspace = true }
2727

2828
# orml
29-
orml-traits = { path = "../traits", version = "1.1.0", default-features = false}
30-
orml-xcm-support = { path = "../xcm-support", version = "1.1.0", default-features = false }
29+
orml-traits = { path = "../traits", version = "1.2.1", default-features = false}
30+
orml-xcm-support = { path = "../xcm-support", version = "1.2.1", default-features = false }
3131

3232
[dev-dependencies]
3333
# substrate

0 commit comments

Comments
 (0)