Skip to content

Commit 5ee30c0

Browse files
authored
bump version (#358)
1 parent 3bff6ee commit 5ee30c0

File tree

23 files changed

+51
-51
lines changed

23 files changed

+51
-51
lines changed

auction/Cargo.toml

Lines changed: 2 additions & 2 deletions
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 = "0.3.3-dev"
6+
version = "0.4.0-dev"
77
authors = ["Acala Developers"]
88
edition = "2018"
99

@@ -14,7 +14,7 @@ sp-runtime = { version = "2.0.1", default-features = false }
1414
sp-std = { version = "2.0.1", default-features = false }
1515
frame-support = { version = "2.0.1", default-features = false }
1616
frame-system = { version = "2.0.1", default-features = false }
17-
orml-traits = { path = "../traits", version = "0.3.3-dev", default-features = false }
17+
orml-traits = { path = "../traits", version = "0.4.0-dev", default-features = false }
1818

1919
[dev-dependencies]
2020
sp-core = { version = "2.0.1", default-features = false }

auction/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,6 @@ pub mod module {
6161
type WeightInfo: WeightInfo;
6262
}
6363

64-
#[pallet::pallet]
65-
pub struct Pallet<T>(PhantomData<T>);
66-
6764
#[pallet::error]
6865
pub enum Error<T> {
6966
AuctionNotExist,
@@ -97,6 +94,9 @@ pub mod module {
9794
pub type AuctionEndTime<T: Config> =
9895
StorageDoubleMap<_, Twox64Concat, T::BlockNumber, Blake2_128Concat, T::AuctionId, (), OptionQuery>;
9996

97+
#[pallet::pallet]
98+
pub struct Pallet<T>(PhantomData<T>);
99+
100100
#[pallet::hooks]
101101
impl<T: Config> Hooks<T::BlockNumber> for Pallet<T> {
102102
fn on_initialize(now: T::BlockNumber) -> Weight {

authority/Cargo.toml

Lines changed: 2 additions & 2 deletions
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 = "0.3.3-dev"
6+
version = "0.4.0-dev"
77
authors = ["Acala Developers"]
88
edition = "2018"
99

@@ -14,7 +14,7 @@ sp-runtime = { version = "2.0.1", default-features = false }
1414
sp-std = { version = "2.0.1", default-features = false }
1515
frame-support = { version = "2.0.1", default-features = false }
1616
frame-system = { version = "2.0.1", default-features = false }
17-
orml-traits = { path = "../traits", version = "0.3.3-dev", default-features = false }
17+
orml-traits = { path = "../traits", version = "0.4.0-dev", default-features = false }
1818

1919
[dev-dependencies]
2020
sp-core = { version = "2.0.1", default-features = false }

authority/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,9 +168,6 @@ pub mod module {
168168
type WeightInfo: WeightInfo;
169169
}
170170

171-
#[pallet::pallet]
172-
pub struct Pallet<T>(PhantomData<T>);
173-
174171
#[pallet::error]
175172
pub enum Error<T> {
176173
/// Calculation overflow.
@@ -204,6 +201,9 @@ pub mod module {
204201
#[pallet::getter(fn next_task_index)]
205202
pub type NextTaskIndex<T: Config> = StorageValue<_, ScheduleTaskIndex, ValueQuery>;
206203

204+
#[pallet::pallet]
205+
pub struct Pallet<T>(PhantomData<T>);
206+
207207
#[pallet::hooks]
208208
impl<T: Config> Hooks<T::BlockNumber> for Pallet<T> {}
209209

benchmarking/Cargo.toml

Lines changed: 1 addition & 1 deletion
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 = "0.3.3-dev"
6+
version = "0.4.0-dev"
77
authors = ["Laminar Developers <[email protected]>"]
88
edition = "2018"
99

currencies/Cargo.toml

Lines changed: 4 additions & 4 deletions
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 = "0.3.3-dev"
6+
version = "0.4.0-dev"
77
authors = ["Laminar Developers <[email protected]>"]
88
edition = "2018"
99

@@ -17,13 +17,13 @@ sp-std = { version = "2.0.1", default-features = false }
1717
frame-support = { version = "2.0.1", default-features = false }
1818
frame-system = { version = "2.0.1", default-features = false }
1919

20-
orml-traits = { path = "../traits", version = "0.3.3-dev", default-features = false }
21-
orml-utilities = { path = "../utilities", version = "0.3.3-dev", default-features = false }
20+
orml-traits = { path = "../traits", version = "0.4.0-dev", default-features = false }
21+
orml-utilities = { path = "../utilities", version = "0.4.0-dev", default-features = false }
2222

2323
[dev-dependencies]
2424
sp-core = { version = "2.0.1", default-features = false }
2525
pallet-balances = "2.0.0"
26-
orml_tokens = { package = "orml-tokens", path = "../tokens", version = "0.3.3-dev" }
26+
orml_tokens = { package = "orml-tokens", path = "../tokens", version = "0.4.0-dev" }
2727

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

currencies/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,6 @@ pub mod module {
109109
type WeightInfo: WeightInfo;
110110
}
111111

112-
#[pallet::pallet]
113-
pub struct Pallet<T>(PhantomData<T>);
114-
115112
#[pallet::error]
116113
pub enum Error<T> {
117114
/// Unable to convert the Amount type into Balance.
@@ -133,6 +130,9 @@ pub mod module {
133130
Withdrawn(CurrencyIdOf<T>, T::AccountId, BalanceOf<T>),
134131
}
135132

133+
#[pallet::pallet]
134+
pub struct Pallet<T>(PhantomData<T>);
135+
136136
#[pallet::hooks]
137137
impl<T: Config> Hooks<T::BlockNumber> for Pallet<T> {}
138138

gradually-update/Cargo.toml

Lines changed: 1 addition & 1 deletion
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 = "0.3.3-dev"
6+
version = "0.4.0-dev"
77
authors = ["Laminar Developers <[email protected]>"]
88
edition = "2018"
99

gradually-update/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,6 @@ pub mod module {
7676
type WeightInfo: WeightInfo;
7777
}
7878

79-
#[pallet::pallet]
80-
pub struct Pallet<T>(PhantomData<T>);
81-
8279
#[pallet::error]
8380
pub enum Error<T> {
8481
/// The `per_block` or `target_value` is invalid.
@@ -112,6 +109,9 @@ pub mod module {
112109
/// The last updated block number
113110
type LastUpdatedAt<T: Config> = StorageValue<_, T::BlockNumber, ValueQuery>;
114111

112+
#[pallet::pallet]
113+
pub struct Pallet<T>(PhantomData<T>);
114+
115115
#[pallet::hooks]
116116
impl<T: Config> Hooks<T::BlockNumber> for Pallet<T> {
117117
/// `on_initialize` to return the weight used in `on_finalize`.

nft/Cargo.toml

Lines changed: 1 addition & 1 deletion
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 = "0.3.5-dev"
6+
version = "0.4.0-dev"
77
authors = ["Acala Developers"]
88
edition = "2018"
99

0 commit comments

Comments
 (0)