From 64ea36f242c11df9a738b3aad277df665b5e3e73 Mon Sep 17 00:00:00 2001
From: Bryan Chen <xlchen1291@gmail.com>
Date: Fri, 5 Jun 2020 16:00:04 +1200
Subject: [PATCH] change to dev version

---
 auction/Cargo.toml                | 4 ++--
 authority/Cargo.toml              | 4 ++--
 benchmarking/Cargo.toml           | 2 +-
 currencies/Cargo.toml             | 4 ++--
 gradually-update/Cargo.toml       | 2 +-
 oracle/Cargo.toml                 | 6 +++---
 oracle/rpc/Cargo.toml             | 2 +-
 oracle/rpc/runtime-api/Cargo.toml | 2 +-
 prices/Cargo.toml                 | 6 +++---
 schedule-update/Cargo.toml        | 4 ++--
 tokens/Cargo.toml                 | 6 +++---
 traits/Cargo.toml                 | 2 +-
 utilities/Cargo.toml              | 2 +-
 vesting/Cargo.toml                | 2 +-
 14 files changed, 24 insertions(+), 24 deletions(-)

diff --git a/auction/Cargo.toml b/auction/Cargo.toml
index f549a22..099da04 100644
--- a/auction/Cargo.toml
+++ b/auction/Cargo.toml
@@ -3,7 +3,7 @@ name = "orml-auction"
 description = "Auction module that implements `Auction` trait."
 repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/auction"
 license = "Apache-2.0"
-version = "0.1.1"
+version = "0.1.2-dev"
 authors = ["Acala Developers"]
 edition = "2018"
 
@@ -17,7 +17,7 @@ sp-std = { version = "2.0.0-rc2", default-features = false }
 frame-support = { version = "2.0.0-rc2", default-features = false }
 frame-system = { version = "2.0.0-rc2", default-features = false }
 
-orml-traits = { path = "../traits", version = "0.1.1", default-features = false }
+orml-traits = { path = "../traits", version = "0.1.2-dev", default-features = false }
 
 [dev-dependencies]
 sp-core = { version = "2.0.0-rc2", default-features = false }
diff --git a/authority/Cargo.toml b/authority/Cargo.toml
index 3714985..cdc2802 100644
--- a/authority/Cargo.toml
+++ b/authority/Cargo.toml
@@ -3,7 +3,7 @@ name = "orml-authority"
 description = "Utility pallet to perform ROOT calls in a PoA network"
 repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/auction"
 license = "Apache-2.0"
-version = "0.1.1"
+version = "0.1.2-dev"
 authors = ["Acala Developers"]
 edition = "2018"
 
@@ -17,7 +17,7 @@ sp-std = { version = "2.0.0-rc2", default-features = false }
 frame-support = { version = "2.0.0-rc2", default-features = false }
 frame-system = { version = "2.0.0-rc2", default-features = false }
 
-orml-traits = { path = "../traits", version = "0.1.1", default-features = false }
+orml-traits = { path = "../traits", version = "0.1.2-dev", default-features = false }
 
 [dev-dependencies]
 sp-core = { version = "2.0.0-rc2", default-features = false }
diff --git a/benchmarking/Cargo.toml b/benchmarking/Cargo.toml
index 0b34925..f96ee44 100644
--- a/benchmarking/Cargo.toml
+++ b/benchmarking/Cargo.toml
@@ -3,7 +3,7 @@ name = "orml-benchmarking"
 description = "Provide macro to benchmark Substrate runtime."
 repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/benchmarking"
 license = "Apache-2.0"
-version = "0.1.1"
+version = "0.1.2-dev"
 authors = ["Laminar Developers <hello@laminar.one>"]
 edition = "2018"
 
diff --git a/currencies/Cargo.toml b/currencies/Cargo.toml
index 8ea47e3..da2d762 100644
--- a/currencies/Cargo.toml
+++ b/currencies/Cargo.toml
@@ -3,7 +3,7 @@ name = "orml-currencies"
 description = "Provide `MultiCurrency` implementation using `pallet-balances` and `orml-tokens` module."
 repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/currencies"
 license = "Apache-2.0"
-version = "0.1.1"
+version = "0.1.2-dev"
 authors = ["Laminar Developers <hello@laminar.one>"]
 edition = "2018"
 
@@ -17,7 +17,7 @@ sp-std = { version = "2.0.0-rc2", default-features = false }
 frame-support = { version = "2.0.0-rc2", default-features = false }
 frame-system = { version = "2.0.0-rc2", default-features = false }
 
-orml-traits = { path = "../traits", version = "0.1.1", default-features = false }
+orml-traits = { path = "../traits", version = "0.1.2-dev", default-features = false }
 
 [dev-dependencies]
 sp-core = { version = "2.0.0-rc2", default-features = false }
diff --git a/gradually-update/Cargo.toml b/gradually-update/Cargo.toml
index d5bd1c3..cc9e67e 100644
--- a/gradually-update/Cargo.toml
+++ b/gradually-update/Cargo.toml
@@ -3,7 +3,7 @@ name = "orml-gradually-update"
 description = "Provides way to adjust numeric parameter gradually over a period of time."
 repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/gradually-update"
 license = "Apache-2.0"
-version = "0.1.1"
+version = "0.1.2-dev"
 authors = ["Laminar Developers <hello@laminar.one>"]
 edition = "2018"
 
diff --git a/oracle/Cargo.toml b/oracle/Cargo.toml
index 8ed084d..7c8f878 100644
--- a/oracle/Cargo.toml
+++ b/oracle/Cargo.toml
@@ -3,7 +3,7 @@ name = "orml-oracle"
 description = "Oracle module that makes off-chain data available on-chain."
 repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/oracle"
 license = "Apache-2.0"
-version = "0.1.1"
+version = "0.1.2-dev"
 authors = ["Laminar Developers <hello@laminar.one>"]
 edition = "2018"
 
@@ -19,8 +19,8 @@ sp-std = { version = "2.0.0-rc2", default-features = false }
 frame-support = { version = "2.0.0-rc2", default-features = false }
 frame-system = { version = "2.0.0-rc2", default-features = false }
 
-orml-traits = { path = "../traits", version = "0.1.1", default-features = false }
-orml-utilities = { path = "../utilities", version = "0.1.1", default-features = false }
+orml-traits = { path = "../traits", version = "0.1.2-dev", default-features = false }
+orml-utilities = { path = "../utilities", version = "0.1.2-dev", default-features = false }
 
 [dev-dependencies]
 sp-core = { version = "2.0.0-rc2", default-features = false }
diff --git a/oracle/rpc/Cargo.toml b/oracle/rpc/Cargo.toml
index 3db583e..323ca28 100644
--- a/oracle/rpc/Cargo.toml
+++ b/oracle/rpc/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "orml-oracle-rpc"
-version = "0.1.1"
+version = "0.1.2-dev"
 authors = ["Laminar Developers <hello@laminar.one>"]
 edition = "2018"
 
diff --git a/oracle/rpc/runtime-api/Cargo.toml b/oracle/rpc/runtime-api/Cargo.toml
index 5c6ca1b..63d6169 100644
--- a/oracle/rpc/runtime-api/Cargo.toml
+++ b/oracle/rpc/runtime-api/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "orml-oracle-rpc-runtime-api"
-version = "0.1.1"
+version = "0.1.2-dev"
 authors = ["Laminar Developers <hello@laminar.one>"]
 edition = "2018"
 
diff --git a/prices/Cargo.toml b/prices/Cargo.toml
index bc7f086..7502639 100644
--- a/prices/Cargo.toml
+++ b/prices/Cargo.toml
@@ -3,7 +3,7 @@ name = "orml-prices"
 description = "Provide basic asset price abstraction."
 repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/prices"
 license = "Apache-2.0"
-version = "0.1.1"
+version = "0.1.2-dev"
 authors = ["Acala Developers"]
 edition = "2018"
 
@@ -17,8 +17,8 @@ sp-std = { version = "2.0.0-rc2", default-features = false }
 frame-support = { version = "2.0.0-rc2", default-features = false }
 frame-system = { version = "2.0.0-rc2", default-features = false }
 
-orml-traits = { path = "../traits", version = "0.1.1", default-features = false }
-orml-utilities = { path = "../utilities", version = "0.1.1", default-features = false }
+orml-traits = { path = "../traits", version = "0.1.2-dev", default-features = false }
+orml-utilities = { path = "../utilities", version = "0.1.2-dev", default-features = false }
 
 [dev-dependencies]
 sp-core = { version = "2.0.0-rc2", default-features = false }
diff --git a/schedule-update/Cargo.toml b/schedule-update/Cargo.toml
index 995647f..48073e0 100644
--- a/schedule-update/Cargo.toml
+++ b/schedule-update/Cargo.toml
@@ -3,7 +3,7 @@ name = "orml-schedule-update"
 description = "Provides way to schedule a call to be dispatched at later block."
 repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/schedule-update"
 license = "Apache-2.0"
-version = "0.1.1"
+version = "0.1.2-dev"
 authors = ["Laminar Developers <hello@laminar.one>"]
 edition = "2018"
 
@@ -14,7 +14,7 @@ frame-support = { version = "2.0.0-rc2", default-features = false }
 frame-system = { version = "2.0.0-rc2", default-features = false }
 sp-std = { version = "2.0.0-rc2", default-features = false }
 sp-runtime = { version = "2.0.0-rc2", default-features = false }
-orml-traits = { path = "../traits", version = "0.1.1", default-features = false }
+orml-traits = { path = "../traits", version = "0.1.2-dev", default-features = false }
 
 [dev-dependencies]
 sp-io = { version = "2.0.0-rc2", default-features = false }
diff --git a/tokens/Cargo.toml b/tokens/Cargo.toml
index a126f73..6718421 100644
--- a/tokens/Cargo.toml
+++ b/tokens/Cargo.toml
@@ -3,7 +3,7 @@ name = "orml-tokens"
 description = "Fungible tokens module that implements `MultiCurrency` trait."
 repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/tokens"
 license = "Apache-2.0"
-version = "0.1.1"
+version = "0.1.2-dev"
 authors = ["Laminar Developers <hello@laminar.one>"]
 edition = "2018"
 
@@ -17,8 +17,8 @@ sp-std = { version = "2.0.0-rc2", default-features = false }
 frame-support = { version = "2.0.0-rc2", default-features = false }
 frame-system = { version = "2.0.0-rc2", default-features = false }
 
-orml-traits = { path = "../traits", version = "0.1.1", default-features = false }
-orml-utilities = { path = "../utilities", version = "0.1.1", default-features = false }
+orml-traits = { path = "../traits", version = "0.1.2-dev", default-features = false }
+orml-utilities = { path = "../utilities", version = "0.1.2-dev", default-features = false }
 
 [dev-dependencies]
 sp-core = { version = "2.0.0-rc2", default-features = false }
diff --git a/traits/Cargo.toml b/traits/Cargo.toml
index 1706a44..c6f2eab 100644
--- a/traits/Cargo.toml
+++ b/traits/Cargo.toml
@@ -3,7 +3,7 @@ name = "orml-traits"
 description = "Shared traits including `BasicCurrency`, `MultiCurrency`, `Auction` and more."
 repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/traits"
 license = "Apache-2.0"
-version = "0.1.1"
+version = "0.1.2-dev"
 authors = ["Laminar Developers <hello@laminar.one>"]
 edition = "2018"
 
diff --git a/utilities/Cargo.toml b/utilities/Cargo.toml
index 783b617..5670553 100644
--- a/utilities/Cargo.toml
+++ b/utilities/Cargo.toml
@@ -3,7 +3,7 @@ name = "orml-utilities"
 description = "Various utilities including `FixedU128` and `LinkedList`."
 repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/utilities"
 license = "Apache-2.0"
-version = "0.1.1"
+version = "0.1.2-dev"
 authors = ["Laminar Developers <hello@laminar.one>"]
 edition = "2018"
 
diff --git a/vesting/Cargo.toml b/vesting/Cargo.toml
index a7475bd..83c6fd1 100644
--- a/vesting/Cargo.toml
+++ b/vesting/Cargo.toml
@@ -3,7 +3,7 @@ name = "orml-vesting"
 description = "Provides scheduled balance locking mechanism, in a *graded vesting* way."
 repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/vesting"
 license = "Apache-2.0"
-version = "0.1.1"
+version = "0.1.2-dev"
 authors = ["Laminar Developers <hello@laminar.one>"]
 edition = "2018"
 
-- 
GitLab