From eafd8d32a03a3e9ef0eeae7a0e6590f69502ead8 Mon Sep 17 00:00:00 2001 From: mace Date: Sun, 13 Aug 2023 05:30:44 +0200 Subject: [PATCH] chore: release main --- .release-please-manifest.json | 2 +- Cargo.lock | 20 ++++++++++---------- access-segregator/CHANGELOG.md | 7 +++++++ access-segregator/Cargo.toml | 2 +- basic-fee-handler/CHANGELOG.md | 8 ++++++++ basic-fee-handler/Cargo.toml | 2 +- bridge/CHANGELOG.md | 9 +++++++++ bridge/Cargo.toml | 2 +- fee-handler-router/CHANGELOG.md | 13 +++++++++++++ fee-handler-router/Cargo.toml | 2 +- percentage-fee-handler/Cargo.toml | 2 +- rpc/CHANGELOG.md | 7 +++++++ rpc/Cargo.toml | 2 +- runtime-api/CHANGELOG.md | 7 +++++++ runtime-api/Cargo.toml | 2 +- substrate-node/node/Cargo.toml | 4 ++-- substrate-node/runtime/Cargo.toml | 2 +- traits/CHANGELOG.md | 8 ++++++++ traits/Cargo.toml | 2 +- 19 files changed, 81 insertions(+), 22 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 99f28c7..d7671a3 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{"access-segregator":"0.2.0","basic-fee-handler":"0.3.0","bridge":"0.3.0","fee-handler-router":"0.3.0","rpc":"0.2.1","runtime-api":"0.2.1","traits":"0.2.0","substrate-node/node":"4.0.3-dev","substrate-node/runtime":"4.0.3-dev"} +{"access-segregator":"0.3.0","basic-fee-handler":"0.4.0","bridge":"0.4.0","fee-handler-router":"0.4.0","rpc":"0.3.0","runtime-api":"0.3.0","traits":"0.3.0","substrate-node/node":"4.0.4-dev","substrate-node/runtime":"4.0.4-dev","percentage-fee-handler":"0.3.1"} diff --git a/Cargo.lock b/Cargo.lock index 06d6378..1e9d1fd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4522,7 +4522,7 @@ dependencies = [ [[package]] name = "node-template" -version = "4.0.3-dev" +version = "4.0.4-dev" dependencies = [ "clap", "cumulus-primitives-core", @@ -4570,7 +4570,7 @@ dependencies = [ [[package]] name = "node-template-runtime" -version = "4.0.3-dev" +version = "4.0.4-dev" dependencies = [ "fixed", "frame-benchmarking", @@ -8904,7 +8904,7 @@ checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" [[package]] name = "sygma-access-segregator" -version = "0.2.0" +version = "0.3.0" dependencies = [ "frame-benchmarking", "frame-support", @@ -8919,7 +8919,7 @@ dependencies = [ [[package]] name = "sygma-basic-feehandler" -version = "0.3.0" +version = "0.4.0" dependencies = [ "frame-benchmarking", "frame-support", @@ -8939,7 +8939,7 @@ dependencies = [ [[package]] name = "sygma-bridge" -version = "0.3.0" +version = "0.4.0" dependencies = [ "arrayref", "assert_matches", @@ -8978,7 +8978,7 @@ dependencies = [ [[package]] name = "sygma-fee-handler-router" -version = "0.3.0" +version = "0.4.0" dependencies = [ "frame-benchmarking", "frame-support", @@ -9000,7 +9000,7 @@ dependencies = [ [[package]] name = "sygma-percentage-feehandler" -version = "0.3.0" +version = "0.3.1" dependencies = [ "frame-benchmarking", "frame-support", @@ -9020,7 +9020,7 @@ dependencies = [ [[package]] name = "sygma-rpc" -version = "0.2.1" +version = "0.3.0" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -9036,7 +9036,7 @@ dependencies = [ [[package]] name = "sygma-runtime-api" -version = "0.2.1" +version = "0.3.0" dependencies = [ "sp-api", "sygma-bridge", @@ -9045,7 +9045,7 @@ dependencies = [ [[package]] name = "sygma-traits" -version = "0.2.0" +version = "0.3.0" dependencies = [ "ethabi", "frame-support", diff --git a/access-segregator/CHANGELOG.md b/access-segregator/CHANGELOG.md index 3a0077c..3ed44be 100644 --- a/access-segregator/CHANGELOG.md +++ b/access-segregator/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.3.0](https://github.com/sygmaprotocol/sygma-substrate-pallets/compare/sygma-access-segregator-v0.2.0...sygma-access-segregator-v0.3.0) (2023-08-13) + + +### Features + +* Upgrade to polkadot v0.9.43 ([#111](https://github.com/sygmaprotocol/sygma-substrate-pallets/issues/111)) ([1d7fc5a](https://github.com/sygmaprotocol/sygma-substrate-pallets/commit/1d7fc5afe34d50168823bef92e610ea50ed9bdd4)) + ## [0.2.0](https://github.com/sygmaprotocol/sygma-substrate-pallets/compare/sygma-access-segregator-v0.1.0...sygma-access-segregator-v0.2.0) (2023-05-11) diff --git a/access-segregator/Cargo.toml b/access-segregator/Cargo.toml index 7ba3b6c..25d2fd9 100644 --- a/access-segregator/Cargo.toml +++ b/access-segregator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sygma-access-segregator" -version = "0.2.0" +version = "0.3.0" edition = "2021" license = "LGPL-3.0" diff --git a/basic-fee-handler/CHANGELOG.md b/basic-fee-handler/CHANGELOG.md index d349e7d..87ded27 100644 --- a/basic-fee-handler/CHANGELOG.md +++ b/basic-fee-handler/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.4.0](https://github.com/sygmaprotocol/sygma-substrate-pallets/compare/sygma-basic-feehandler-v0.3.0...sygma-basic-feehandler-v0.4.0) (2023-08-13) + + +### Features + +* Add percentage fee handler pallet ([#118](https://github.com/sygmaprotocol/sygma-substrate-pallets/issues/118)) ([da8445c](https://github.com/sygmaprotocol/sygma-substrate-pallets/commit/da8445c508e25b014a9c06ae30f48fa1151084a8)) +* Upgrade to polkadot v0.9.43 ([#111](https://github.com/sygmaprotocol/sygma-substrate-pallets/issues/111)) ([1d7fc5a](https://github.com/sygmaprotocol/sygma-substrate-pallets/commit/1d7fc5afe34d50168823bef92e610ea50ed9bdd4)) + ## [0.3.0](https://github.com/sygmaprotocol/sygma-substrate-pallets/compare/sygma-basic-feehandler-v0.2.0...sygma-basic-feehandler-v0.3.0) (2023-05-24) diff --git a/basic-fee-handler/Cargo.toml b/basic-fee-handler/Cargo.toml index 2d43890..c0824a2 100644 --- a/basic-fee-handler/Cargo.toml +++ b/basic-fee-handler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sygma-basic-feehandler" -version = "0.3.0" +version = "0.4.0" edition = "2021" license = "LGPL-3.0" diff --git a/bridge/CHANGELOG.md b/bridge/CHANGELOG.md index b6ecb95..d50ec95 100644 --- a/bridge/CHANGELOG.md +++ b/bridge/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.4.0](https://github.com/sygmaprotocol/sygma-substrate-pallets/compare/sygma-bridge-v0.3.0...sygma-bridge-v0.4.0) (2023-08-13) + + +### Features + +* Add % fee lower and upper bound ([#121](https://github.com/sygmaprotocol/sygma-substrate-pallets/issues/121)) ([f436516](https://github.com/sygmaprotocol/sygma-substrate-pallets/commit/f4365164f978706bd8e6b35c811cb31ef5a5885b)) +* Add percentage fee handler pallet ([#118](https://github.com/sygmaprotocol/sygma-substrate-pallets/issues/118)) ([da8445c](https://github.com/sygmaprotocol/sygma-substrate-pallets/commit/da8445c508e25b014a9c06ae30f48fa1151084a8)) +* Upgrade to polkadot v0.9.43 ([#111](https://github.com/sygmaprotocol/sygma-substrate-pallets/issues/111)) ([1d7fc5a](https://github.com/sygmaprotocol/sygma-substrate-pallets/commit/1d7fc5afe34d50168823bef92e610ea50ed9bdd4)) + ## [0.3.0](https://github.com/sygmaprotocol/sygma-substrate-pallets/compare/sygma-bridge-v0.2.0...sygma-bridge-v0.3.0) (2023-05-24) diff --git a/bridge/Cargo.toml b/bridge/Cargo.toml index 2e3e201..4293bcb 100644 --- a/bridge/Cargo.toml +++ b/bridge/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sygma-bridge" -version = "0.3.0" +version = "0.4.0" edition = "2021" license = "LGPL-3.0" diff --git a/fee-handler-router/CHANGELOG.md b/fee-handler-router/CHANGELOG.md index d9435fc..fb53936 100644 --- a/fee-handler-router/CHANGELOG.md +++ b/fee-handler-router/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [0.4.0](https://github.com/sygmaprotocol/sygma-substrate-pallets/compare/sygma-fee-handler-router-v0.3.0...sygma-fee-handler-router-v0.4.0) (2023-08-13) + + +### Features + +* Add percentage fee handler pallet ([#118](https://github.com/sygmaprotocol/sygma-substrate-pallets/issues/118)) ([da8445c](https://github.com/sygmaprotocol/sygma-substrate-pallets/commit/da8445c508e25b014a9c06ae30f48fa1151084a8)) +* Upgrade to polkadot v0.9.43 ([#111](https://github.com/sygmaprotocol/sygma-substrate-pallets/issues/111)) ([1d7fc5a](https://github.com/sygmaprotocol/sygma-substrate-pallets/commit/1d7fc5afe34d50168823bef92e610ea50ed9bdd4)) + + +### Bug Fixes + +* fix the e2e setup script ([#107](https://github.com/sygmaprotocol/sygma-substrate-pallets/issues/107)) ([458112e](https://github.com/sygmaprotocol/sygma-substrate-pallets/commit/458112e81519b801bbb9e5d4342de81a03578da3)) + ## [0.3.0](https://github.com/sygmaprotocol/sygma-substrate-pallets/compare/sygma-fee-handler-router-v0.2.0...sygma-fee-handler-router-v0.3.0) (2023-05-24) diff --git a/fee-handler-router/Cargo.toml b/fee-handler-router/Cargo.toml index 1e7a787..5aa8616 100644 --- a/fee-handler-router/Cargo.toml +++ b/fee-handler-router/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sygma-fee-handler-router" -version = "0.3.0" +version = "0.4.0" edition = "2021" license = "LGPL-3.0" diff --git a/percentage-fee-handler/Cargo.toml b/percentage-fee-handler/Cargo.toml index 74f4040..e7773d6 100644 --- a/percentage-fee-handler/Cargo.toml +++ b/percentage-fee-handler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sygma-percentage-feehandler" -version = "0.3.0" +version = "0.3.1" edition = "2021" license = "LGPL-3.0" diff --git a/rpc/CHANGELOG.md b/rpc/CHANGELOG.md index 1da9e28..1875124 100644 --- a/rpc/CHANGELOG.md +++ b/rpc/CHANGELOG.md @@ -2,6 +2,13 @@ +## [0.3.0](https://github.com/sygmaprotocol/sygma-substrate-pallets/compare/sygma-rpc-v0.2.1...sygma-rpc-v0.3.0) (2023-08-13) + + +### Features + +* Upgrade to polkadot v0.9.43 ([#111](https://github.com/sygmaprotocol/sygma-substrate-pallets/issues/111)) ([1d7fc5a](https://github.com/sygmaprotocol/sygma-substrate-pallets/commit/1d7fc5afe34d50168823bef92e610ea50ed9bdd4)) + ## [0.2.0](https://github.com/sygmaprotocol/sygma-substrate-pallets/compare/sygma-rpc-v0.1.0...sygma-rpc-v0.2.0) (2023-05-11) diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 7946c76..9cc80a8 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sygma-rpc" -version = "0.2.1" +version = "0.3.0" edition = "2021" license = "LGPL-3.0" diff --git a/runtime-api/CHANGELOG.md b/runtime-api/CHANGELOG.md index 2d4ed8d..4232a96 100644 --- a/runtime-api/CHANGELOG.md +++ b/runtime-api/CHANGELOG.md @@ -2,6 +2,13 @@ +## [0.3.0](https://github.com/sygmaprotocol/sygma-substrate-pallets/compare/sygma-runtime-api-v0.2.1...sygma-runtime-api-v0.3.0) (2023-08-13) + + +### Features + +* Upgrade to polkadot v0.9.43 ([#111](https://github.com/sygmaprotocol/sygma-substrate-pallets/issues/111)) ([1d7fc5a](https://github.com/sygmaprotocol/sygma-substrate-pallets/commit/1d7fc5afe34d50168823bef92e610ea50ed9bdd4)) + ## [0.2.0](https://github.com/sygmaprotocol/sygma-substrate-pallets/compare/sygma-runtime-api-v0.1.0...sygma-runtime-api-v0.2.0) (2023-05-11) diff --git a/runtime-api/Cargo.toml b/runtime-api/Cargo.toml index 0f759b5..6804749 100644 --- a/runtime-api/Cargo.toml +++ b/runtime-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sygma-runtime-api" -version = "0.2.1" +version = "0.3.0" edition = "2021" license = "LGPL-3.0" diff --git a/substrate-node/node/Cargo.toml b/substrate-node/node/Cargo.toml index 0d1e53f..b7fbbb5 100644 --- a/substrate-node/node/Cargo.toml +++ b/substrate-node/node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "node-template" -version = "4.0.3-dev" +version = "4.0.4-dev" description = "A fresh FRAME-based Substrate node, ready for hacking." authors = ["Substrate DevHub "] homepage = "https://substrate.io/" @@ -61,7 +61,7 @@ frame-benchmarking = { version = "4.0.0-dev", git = "https://github.com/parityte frame-benchmarking-cli = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.43" } # Local Dependencies -node-template-runtime = { version = "4.0.3-dev", path = "../runtime" } +node-template-runtime = { version = "4.0.4-dev", path = "../runtime" } sygma-rpc = { path = "../../rpc", default-features = false } sygma-runtime-api = { path = "../../runtime-api", default-features = false } diff --git a/substrate-node/runtime/Cargo.toml b/substrate-node/runtime/Cargo.toml index f966950..79679e1 100644 --- a/substrate-node/runtime/Cargo.toml +++ b/substrate-node/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "node-template-runtime" -version = "4.0.3-dev" +version = "4.0.4-dev" description = "A fresh FRAME-based Substrate node, ready for hacking." authors = ["Substrate DevHub "] homepage = "https://substrate.io/" diff --git a/traits/CHANGELOG.md b/traits/CHANGELOG.md index 125104c..a42c065 100644 --- a/traits/CHANGELOG.md +++ b/traits/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.3.0](https://github.com/sygmaprotocol/sygma-substrate-pallets/compare/sygma-traits-v0.2.0...sygma-traits-v0.3.0) (2023-08-13) + + +### Features + +* Add percentage fee handler pallet ([#118](https://github.com/sygmaprotocol/sygma-substrate-pallets/issues/118)) ([da8445c](https://github.com/sygmaprotocol/sygma-substrate-pallets/commit/da8445c508e25b014a9c06ae30f48fa1151084a8)) +* Upgrade to polkadot v0.9.43 ([#111](https://github.com/sygmaprotocol/sygma-substrate-pallets/issues/111)) ([1d7fc5a](https://github.com/sygmaprotocol/sygma-substrate-pallets/commit/1d7fc5afe34d50168823bef92e610ea50ed9bdd4)) + ## [0.2.0](https://github.com/sygmaprotocol/sygma-substrate-pallets/compare/sygma-traits-v0.1.0...sygma-traits-v0.2.0) (2023-05-11) diff --git a/traits/Cargo.toml b/traits/Cargo.toml index 7c77a62..3541c89 100644 --- a/traits/Cargo.toml +++ b/traits/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sygma-traits" -version = "0.2.0" +version = "0.3.0" edition = "2021" license = "LGPL-3.0"