difftreelog
chore bump versions, update CHANGELOGs
in: master
50 files changed
client/rpc/CHANGELOG.mddiffbeforeafterboth--- a/client/rpc/CHANGELOG.md
+++ b/client/rpc/CHANGELOG.md
@@ -1,3 +1,14 @@
+<!-- bureaucrate goes here -->
+## [v0.1.3] 2022-08-16
+
+### Other changes
+
+- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
+
+- build: Upgrade polkadot to v0.9.26 85515e54c4ca1b82a2630034e55dcc804c643bf8
+
+- build: Upgrade polkadot to v0.9.25 cdfb9bdc7b205ff1b5134f034ef9973d769e5e6b
+
# Change Log
All notable changes to this project will be documented in this file.
client/rpc/Cargo.tomldiffbeforeafterboth--- a/client/rpc/Cargo.toml
+++ b/client/rpc/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "uc-rpc"
-version = "0.1.2"
+version = "0.1.3"
license = "GPLv3"
edition = "2021"
crates/evm-coder/CHANGELOG.mddiffbeforeafterboth--- /dev/null
+++ b/crates/evm-coder/CHANGELOG.md
@@ -0,0 +1,10 @@
+<!-- bureaucrate goes here -->
+## [v0.1.1] 2022-08-16
+
+### Other changes
+
+- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
+
+- build: Upgrade polkadot to v0.9.26 85515e54c4ca1b82a2630034e55dcc804c643bf8
+
+- build: Upgrade polkadot to v0.9.25 cdfb9bdc7b205ff1b5134f034ef9973d769e5e6b
\ No newline at end of file
crates/evm-coder/Cargo.tomldiffbeforeafterboth--- a/crates/evm-coder/Cargo.toml
+++ b/crates/evm-coder/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "evm-coder"
-version = "0.1.0"
+version = "0.1.1"
license = "GPLv3"
edition = "2021"
node/cli/CHANGELOG.mddiffbeforeafterboth--- /dev/null
+++ b/node/cli/CHANGELOG.md
@@ -0,0 +1,15 @@
+<!-- bureaucrate goes here -->
+## [v0.9.24] 2022-08-16
+
+### Other changes
+
+- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
+
+- build: Upgrade polkadot to v0.9.26 85515e54c4ca1b82a2630034e55dcc804c643bf8
+
+- refactor: Use export-genesis state from cumulus e1980179e647db8b299cca32cdc9e2b3bf5e51b2
+
+We had our implementation for some reason, however it is now broken, and
+I see no reason to keep it, as upstream implements exact same options
+
+- build: Upgrade polkadot to v0.9.25 cdfb9bdc7b205ff1b5134f034ef9973d769e5e6b
node/cli/Cargo.tomldiffbeforeafterboth1################################################################################2# Build Dependencies34[build-dependencies.substrate-build-script-utils]5git = "https://github.com/paritytech/substrate"6branch = "polkadot-v0.9.27"78################################################################################9# Substrate Dependecies1011[dependencies.codec]12default-features = false13features = ['derive']14package = 'parity-scale-codec'15version = '3.1.2'1617[dependencies.frame-benchmarking]18git = "https://github.com/paritytech/substrate"19branch = "polkadot-v0.9.27"2021[dependencies.frame-benchmarking-cli]22git = "https://github.com/paritytech/substrate"23branch = "polkadot-v0.9.27"2425[dependencies.try-runtime-cli]26git = "https://github.com/paritytech/substrate"27branch = "polkadot-v0.9.27"2829[dependencies.pallet-transaction-payment-rpc]30git = "https://github.com/paritytech/substrate"31branch = "polkadot-v0.9.27"3233[dependencies.substrate-prometheus-endpoint]34git = "https://github.com/paritytech/substrate"35branch = "polkadot-v0.9.27"3637[dependencies.sc-basic-authorship]38git = "https://github.com/paritytech/substrate"39branch = "polkadot-v0.9.27"4041[dependencies.sc-chain-spec]42git = "https://github.com/paritytech/substrate"43branch = "polkadot-v0.9.27"4445[dependencies.sc-cli]46features = ['wasmtime']47git = "https://github.com/paritytech/substrate"48branch = "polkadot-v0.9.27"4950[dependencies.sc-client-api]51git = "https://github.com/paritytech/substrate"52branch = "polkadot-v0.9.27"5354[dependencies.sc-consensus]55git = "https://github.com/paritytech/substrate"56branch = "polkadot-v0.9.27"5758[dependencies.sc-consensus-aura]59git = "https://github.com/paritytech/substrate"60branch = "polkadot-v0.9.27"6162[dependencies.sc-executor]63features = ['wasmtime']64git = "https://github.com/paritytech/substrate"65branch = "polkadot-v0.9.27"6667[dependencies.sc-finality-grandpa]68git = "https://github.com/paritytech/substrate"69branch = "polkadot-v0.9.27"7071[dependencies.sc-keystore]72git = "https://github.com/paritytech/substrate"73branch = "polkadot-v0.9.27"7475[dependencies.sc-rpc]76git = "https://github.com/paritytech/substrate"77branch = "polkadot-v0.9.27"7879[dependencies.sc-rpc-api]80git = "https://github.com/paritytech/substrate"81branch = "polkadot-v0.9.27"8283[dependencies.sc-service]84features = ['wasmtime']85git = "https://github.com/paritytech/substrate"86branch = "polkadot-v0.9.27"8788[dependencies.sc-telemetry]89git = "https://github.com/paritytech/substrate"90branch = "polkadot-v0.9.27"9192[dependencies.sc-transaction-pool]93git = "https://github.com/paritytech/substrate"94branch = "polkadot-v0.9.27"9596[dependencies.sc-tracing]97git = "https://github.com/paritytech/substrate"98branch = "polkadot-v0.9.27"99100[dependencies.sc-sysinfo]101git = "https://github.com/paritytech/substrate"102branch = "polkadot-v0.9.27"103104[dependencies.sp-block-builder]105git = "https://github.com/paritytech/substrate"106branch = "polkadot-v0.9.27"107108[dependencies.sp-api]109git = "https://github.com/paritytech/substrate"110branch = "polkadot-v0.9.27"111112[dependencies.sp-blockchain]113git = "https://github.com/paritytech/substrate"114branch = "polkadot-v0.9.27"115116[dependencies.sp-consensus]117git = "https://github.com/paritytech/substrate"118branch = "polkadot-v0.9.27"119120[dependencies.sp-consensus-aura]121git = "https://github.com/paritytech/substrate"122branch = "polkadot-v0.9.27"123124[dependencies.sp-core]125git = "https://github.com/paritytech/substrate"126branch = "polkadot-v0.9.27"127128[dependencies.sp-finality-grandpa]129git = "https://github.com/paritytech/substrate"130branch = "polkadot-v0.9.27"131132[dependencies.sp-inherents]133git = "https://github.com/paritytech/substrate"134branch = "polkadot-v0.9.27"135136[dependencies.sp-keystore]137git = "https://github.com/paritytech/substrate"138branch = "polkadot-v0.9.27"139140[dependencies.sp-offchain]141git = "https://github.com/paritytech/substrate"142branch = "polkadot-v0.9.27"143144[dependencies.sp-runtime]145git = "https://github.com/paritytech/substrate"146branch = "polkadot-v0.9.27"147148[dependencies.sp-session]149git = "https://github.com/paritytech/substrate"150branch = "polkadot-v0.9.27"151152[dependencies.sp-timestamp]153git = "https://github.com/paritytech/substrate"154branch = "polkadot-v0.9.27"155156[dependencies.sp-transaction-pool]157git = "https://github.com/paritytech/substrate"158branch = "polkadot-v0.9.27"159160[dependencies.sp-trie]161git = "https://github.com/paritytech/substrate"162branch = "polkadot-v0.9.27"163164[dependencies.substrate-frame-rpc-system]165git = "https://github.com/paritytech/substrate"166branch = "polkadot-v0.9.27"167168[dependencies.sc-network]169git = "https://github.com/paritytech/substrate"170branch = "polkadot-v0.9.27"171172[dependencies.serde]173features = ['derive']174version = '1.0.130'175176[dependencies.serde_json]177version = '1.0.68'178179[dependencies.sc-consensus-manual-seal]180git = "https://github.com/paritytech/substrate"181branch = "polkadot-v0.9.27"182183################################################################################184# Cumulus dependencies185186[dependencies.cumulus-client-consensus-aura]187git = "https://github.com/paritytech/cumulus"188branch = "polkadot-v0.9.27"189190[dependencies.cumulus-client-consensus-common]191git = "https://github.com/paritytech/cumulus"192branch = "polkadot-v0.9.27"193194[dependencies.cumulus-client-collator]195git = "https://github.com/paritytech/cumulus"196branch = "polkadot-v0.9.27"197198[dependencies.cumulus-client-cli]199git = "https://github.com/paritytech/cumulus"200branch = "polkadot-v0.9.27"201202[dependencies.cumulus-client-network]203git = "https://github.com/paritytech/cumulus"204branch = "polkadot-v0.9.27"205206[dependencies.cumulus-primitives-core]207git = "https://github.com/paritytech/cumulus"208branch = "polkadot-v0.9.27"209210[dependencies.cumulus-primitives-parachain-inherent]211git = "https://github.com/paritytech/cumulus"212branch = "polkadot-v0.9.27"213214[dependencies.cumulus-client-service]215git = "https://github.com/paritytech/cumulus"216branch = "polkadot-v0.9.27"217218[dependencies.cumulus-relay-chain-interface]219git = "https://github.com/paritytech/cumulus"220branch = "polkadot-v0.9.27"221222[dependencies.cumulus-relay-chain-inprocess-interface]223git = "https://github.com/paritytech/cumulus"224branch = "polkadot-v0.9.27"225226[dependencies.cumulus-relay-chain-rpc-interface]227git = "https://github.com/paritytech/cumulus"228branch = "polkadot-v0.9.27"229230################################################################################231# Polkadot dependencies232[dependencies.polkadot-primitives]233git = "https://github.com/paritytech/polkadot"234branch = "release-v0.9.27"235236[dependencies.polkadot-service]237git = "https://github.com/paritytech/polkadot"238branch = "release-v0.9.27"239240[dependencies.polkadot-cli]241git = "https://github.com/paritytech/polkadot"242branch = "release-v0.9.27"243244[dependencies.polkadot-test-service]245git = "https://github.com/paritytech/polkadot"246branch = "release-v0.9.27"247248[dependencies.polkadot-parachain]249git = "https://github.com/paritytech/polkadot"250branch = "release-v0.9.27"251252253################################################################################254# Local dependencies255256[dependencies.up-common]257path = "../../primitives/common"258259[dependencies.unique-runtime]260path = '../../runtime/unique'261optional = true262263[dependencies.quartz-runtime]264path = '../../runtime/quartz'265optional = true266267[dependencies.opal-runtime]268path = '../../runtime/opal'269270[dependencies.up-data-structs]271path = "../../primitives/data-structs"272default-features = false273274[dependencies.up-rpc]275path = "../../primitives/rpc"276277[dependencies.pallet-transaction-payment-rpc-runtime-api]278git = "https://github.com/paritytech/substrate"279branch = "polkadot-v0.9.27"280281################################################################################282# Package283284[package]285authors = ['Unique Network <support@uniquenetwork.io>']286build = 'build.rs'287description = 'Unique Node'288edition = '2021'289homepage = 'https://unique.network'290license = 'GPLv3'291name = 'unique-node'292repository = 'https://github.com/UniqueNetwork/unique-chain'293version = '0.9.24'294295[[bin]]296name = 'unique-collator'297path = "src/main.rs"298299[package.metadata.docs.rs]300targets = ['x86_64-unknown-linux-gnu']301302[dependencies]303futures = '0.3.17'304log = '0.4.14'305flexi_logger = "0.22.5"306parking_lot = '0.12.1'307clap = "3.1.2"308jsonrpsee = { version = "0.14.0", features = ["server", "macros"] }309tokio = { version = "1.19.2", features = ["time"] }310311fc-rpc-core = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }312fc-consensus = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }313fc-mapping-sync = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }314fc-rpc = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }315fc-db = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }316fp-rpc = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }317pallet-ethereum = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }318319unique-rpc = { default-features = false, path = "../rpc" }320rmrk-rpc = { path = "../../primitives/rmrk-rpc" }321322[features]323default = []324runtime-benchmarks = [325 'unique-runtime?/runtime-benchmarks',326 'quartz-runtime?/runtime-benchmarks',327 'opal-runtime/runtime-benchmarks',328 'polkadot-service/runtime-benchmarks',329]330try-runtime = []1################################################################################2# Build Dependencies34[build-dependencies.substrate-build-script-utils]5git = "https://github.com/paritytech/substrate"6branch = "polkadot-v0.9.27"78################################################################################9# Substrate Dependecies1011[dependencies.codec]12default-features = false13features = ['derive']14package = 'parity-scale-codec'15version = '3.1.2'1617[dependencies.frame-benchmarking]18git = "https://github.com/paritytech/substrate"19branch = "polkadot-v0.9.27"2021[dependencies.frame-benchmarking-cli]22git = "https://github.com/paritytech/substrate"23branch = "polkadot-v0.9.27"2425[dependencies.try-runtime-cli]26git = "https://github.com/paritytech/substrate"27branch = "polkadot-v0.9.27"2829[dependencies.pallet-transaction-payment-rpc]30git = "https://github.com/paritytech/substrate"31branch = "polkadot-v0.9.27"3233[dependencies.substrate-prometheus-endpoint]34git = "https://github.com/paritytech/substrate"35branch = "polkadot-v0.9.27"3637[dependencies.sc-basic-authorship]38git = "https://github.com/paritytech/substrate"39branch = "polkadot-v0.9.27"4041[dependencies.sc-chain-spec]42git = "https://github.com/paritytech/substrate"43branch = "polkadot-v0.9.27"4445[dependencies.sc-cli]46features = ['wasmtime']47git = "https://github.com/paritytech/substrate"48branch = "polkadot-v0.9.27"4950[dependencies.sc-client-api]51git = "https://github.com/paritytech/substrate"52branch = "polkadot-v0.9.27"5354[dependencies.sc-consensus]55git = "https://github.com/paritytech/substrate"56branch = "polkadot-v0.9.27"5758[dependencies.sc-consensus-aura]59git = "https://github.com/paritytech/substrate"60branch = "polkadot-v0.9.27"6162[dependencies.sc-executor]63features = ['wasmtime']64git = "https://github.com/paritytech/substrate"65branch = "polkadot-v0.9.27"6667[dependencies.sc-finality-grandpa]68git = "https://github.com/paritytech/substrate"69branch = "polkadot-v0.9.27"7071[dependencies.sc-keystore]72git = "https://github.com/paritytech/substrate"73branch = "polkadot-v0.9.27"7475[dependencies.sc-rpc]76git = "https://github.com/paritytech/substrate"77branch = "polkadot-v0.9.27"7879[dependencies.sc-rpc-api]80git = "https://github.com/paritytech/substrate"81branch = "polkadot-v0.9.27"8283[dependencies.sc-service]84features = ['wasmtime']85git = "https://github.com/paritytech/substrate"86branch = "polkadot-v0.9.27"8788[dependencies.sc-telemetry]89git = "https://github.com/paritytech/substrate"90branch = "polkadot-v0.9.27"9192[dependencies.sc-transaction-pool]93git = "https://github.com/paritytech/substrate"94branch = "polkadot-v0.9.27"9596[dependencies.sc-tracing]97git = "https://github.com/paritytech/substrate"98branch = "polkadot-v0.9.27"99100[dependencies.sc-sysinfo]101git = "https://github.com/paritytech/substrate"102branch = "polkadot-v0.9.27"103104[dependencies.sp-block-builder]105git = "https://github.com/paritytech/substrate"106branch = "polkadot-v0.9.27"107108[dependencies.sp-api]109git = "https://github.com/paritytech/substrate"110branch = "polkadot-v0.9.27"111112[dependencies.sp-blockchain]113git = "https://github.com/paritytech/substrate"114branch = "polkadot-v0.9.27"115116[dependencies.sp-consensus]117git = "https://github.com/paritytech/substrate"118branch = "polkadot-v0.9.27"119120[dependencies.sp-consensus-aura]121git = "https://github.com/paritytech/substrate"122branch = "polkadot-v0.9.27"123124[dependencies.sp-core]125git = "https://github.com/paritytech/substrate"126branch = "polkadot-v0.9.27"127128[dependencies.sp-finality-grandpa]129git = "https://github.com/paritytech/substrate"130branch = "polkadot-v0.9.27"131132[dependencies.sp-inherents]133git = "https://github.com/paritytech/substrate"134branch = "polkadot-v0.9.27"135136[dependencies.sp-keystore]137git = "https://github.com/paritytech/substrate"138branch = "polkadot-v0.9.27"139140[dependencies.sp-offchain]141git = "https://github.com/paritytech/substrate"142branch = "polkadot-v0.9.27"143144[dependencies.sp-runtime]145git = "https://github.com/paritytech/substrate"146branch = "polkadot-v0.9.27"147148[dependencies.sp-session]149git = "https://github.com/paritytech/substrate"150branch = "polkadot-v0.9.27"151152[dependencies.sp-timestamp]153git = "https://github.com/paritytech/substrate"154branch = "polkadot-v0.9.27"155156[dependencies.sp-transaction-pool]157git = "https://github.com/paritytech/substrate"158branch = "polkadot-v0.9.27"159160[dependencies.sp-trie]161git = "https://github.com/paritytech/substrate"162branch = "polkadot-v0.9.27"163164[dependencies.substrate-frame-rpc-system]165git = "https://github.com/paritytech/substrate"166branch = "polkadot-v0.9.27"167168[dependencies.sc-network]169git = "https://github.com/paritytech/substrate"170branch = "polkadot-v0.9.27"171172[dependencies.serde]173features = ['derive']174version = '1.0.130'175176[dependencies.serde_json]177version = '1.0.68'178179[dependencies.sc-consensus-manual-seal]180git = "https://github.com/paritytech/substrate"181branch = "polkadot-v0.9.27"182183################################################################################184# Cumulus dependencies185186[dependencies.cumulus-client-consensus-aura]187git = "https://github.com/paritytech/cumulus"188branch = "polkadot-v0.9.27"189190[dependencies.cumulus-client-consensus-common]191git = "https://github.com/paritytech/cumulus"192branch = "polkadot-v0.9.27"193194[dependencies.cumulus-client-collator]195git = "https://github.com/paritytech/cumulus"196branch = "polkadot-v0.9.27"197198[dependencies.cumulus-client-cli]199git = "https://github.com/paritytech/cumulus"200branch = "polkadot-v0.9.27"201202[dependencies.cumulus-client-network]203git = "https://github.com/paritytech/cumulus"204branch = "polkadot-v0.9.27"205206[dependencies.cumulus-primitives-core]207git = "https://github.com/paritytech/cumulus"208branch = "polkadot-v0.9.27"209210[dependencies.cumulus-primitives-parachain-inherent]211git = "https://github.com/paritytech/cumulus"212branch = "polkadot-v0.9.27"213214[dependencies.cumulus-client-service]215git = "https://github.com/paritytech/cumulus"216branch = "polkadot-v0.9.27"217218[dependencies.cumulus-relay-chain-interface]219git = "https://github.com/paritytech/cumulus"220branch = "polkadot-v0.9.27"221222[dependencies.cumulus-relay-chain-inprocess-interface]223git = "https://github.com/paritytech/cumulus"224branch = "polkadot-v0.9.27"225226[dependencies.cumulus-relay-chain-rpc-interface]227git = "https://github.com/paritytech/cumulus"228branch = "polkadot-v0.9.27"229230################################################################################231# Polkadot dependencies232[dependencies.polkadot-primitives]233git = "https://github.com/paritytech/polkadot"234branch = "release-v0.9.27"235236[dependencies.polkadot-service]237git = "https://github.com/paritytech/polkadot"238branch = "release-v0.9.27"239240[dependencies.polkadot-cli]241git = "https://github.com/paritytech/polkadot"242branch = "release-v0.9.27"243244[dependencies.polkadot-test-service]245git = "https://github.com/paritytech/polkadot"246branch = "release-v0.9.27"247248[dependencies.polkadot-parachain]249git = "https://github.com/paritytech/polkadot"250branch = "release-v0.9.27"251252253################################################################################254# Local dependencies255256[dependencies.up-common]257path = "../../primitives/common"258259[dependencies.unique-runtime]260path = '../../runtime/unique'261optional = true262263[dependencies.quartz-runtime]264path = '../../runtime/quartz'265optional = true266267[dependencies.opal-runtime]268path = '../../runtime/opal'269270[dependencies.up-data-structs]271path = "../../primitives/data-structs"272default-features = false273274[dependencies.up-rpc]275path = "../../primitives/rpc"276277[dependencies.pallet-transaction-payment-rpc-runtime-api]278git = "https://github.com/paritytech/substrate"279branch = "polkadot-v0.9.27"280281################################################################################282# Package283284[package]285authors = ['Unique Network <support@uniquenetwork.io>']286build = 'build.rs'287description = 'Unique Node'288edition = '2021'289homepage = 'https://unique.network'290license = 'GPLv3'291name = 'unique-node'292repository = 'https://github.com/UniqueNetwork/unique-chain'293version = "0.9.24"294295[[bin]]296name = 'unique-collator'297path = "src/main.rs"298299[package.metadata.docs.rs]300targets = ['x86_64-unknown-linux-gnu']301302[dependencies]303futures = '0.3.17'304log = '0.4.14'305flexi_logger = "0.22.5"306parking_lot = '0.12.1'307clap = "3.1.2"308jsonrpsee = { version = "0.14.0", features = ["server", "macros"] }309tokio = { version = "1.19.2", features = ["time"] }310311fc-rpc-core = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }312fc-consensus = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }313fc-mapping-sync = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }314fc-rpc = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }315fc-db = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }316fp-rpc = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }317pallet-ethereum = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }318319unique-rpc = { default-features = false, path = "../rpc" }320rmrk-rpc = { path = "../../primitives/rmrk-rpc" }321322[features]323default = []324runtime-benchmarks = [325 'unique-runtime?/runtime-benchmarks',326 'quartz-runtime?/runtime-benchmarks',327 'opal-runtime/runtime-benchmarks',328 'polkadot-service/runtime-benchmarks',329]330try-runtime = []node/rpc/CHANGELOG.mddiffbeforeafterboth--- /dev/null
+++ b/node/rpc/CHANGELOG.md
@@ -0,0 +1,10 @@
+<!-- bureaucrate goes here -->
+## [v0.1.1] 2022-08-16
+
+### Other changes
+
+- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
+
+- build: Upgrade polkadot to v0.9.26 85515e54c4ca1b82a2630034e55dcc804c643bf8
+
+- build: Upgrade polkadot to v0.9.25 cdfb9bdc7b205ff1b5134f034ef9973d769e5e6b
\ No newline at end of file
node/rpc/Cargo.tomldiffbeforeafterboth--- a/node/rpc/Cargo.toml
+++ b/node/rpc/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "unique-rpc"
-version = "0.1.0"
+version = "0.1.1"
authors = ['Unique Network <support@uniquenetwork.io>']
license = 'GPLv3'
edition = "2021"
pallets/common/CHANGELOG.mddiffbeforeafterboth--- a/pallets/common/CHANGELOG.md
+++ b/pallets/common/CHANGELOG.md
@@ -1,3 +1,23 @@
+<!-- bureaucrate goes here -->
+## [v0.1.5] 2022-08-16
+
+### Other changes
+
+- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
+
+- build: Upgrade polkadot to v0.9.26 85515e54c4ca1b82a2630034e55dcc804c643bf8
+
+- refactor: Switch to new prefix removal methods 26734e9567589d75cdd99e404eabf11d5a97d975
+
+New methods allows to call `remove_prefix` with limit multiple times
+in the same block
+However, we don't use prefix removal limits, so upgrade is
+straightforward
+
+Upstream-Change: https://github.com/paritytech/substrate/pull/11490
+
+- build: Upgrade polkadot to v0.9.25 cdfb9bdc7b205ff1b5134f034ef9973d769e5e6b
+
# Change Log
All notable changes to this project will be documented in this file.
@@ -18,6 +38,4 @@
### Added
- Implementation of RPC method `token_owners` returning 10 owners in no particular order.
- This was an internal request to improve the web interface and support fractionalization event.
-
-
\ No newline at end of file
+ This was an internal request to improve the web interface and support fractionalization event.
\ No newline at end of file
pallets/common/Cargo.tomldiffbeforeafterboth--- a/pallets/common/Cargo.toml
+++ b/pallets/common/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "pallet-common"
-version = "0.1.4"
+version = "0.1.5"
license = "GPLv3"
edition = "2021"
pallets/configuration/CHANGELOG.mddiffbeforeafterboth--- /dev/null
+++ b/pallets/configuration/CHANGELOG.md
@@ -0,0 +1,6 @@
+<!-- bureaucrate goes here -->
+## [v0.1.1] 2022-08-16
+
+### Other changes
+
+- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
\ No newline at end of file
pallets/configuration/Cargo.tomldiffbeforeafterboth--- a/pallets/configuration/Cargo.toml
+++ b/pallets/configuration/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "pallet-configuration"
-version = "0.1.0"
+version = "0.1.1"
edition = "2021"
[dependencies]
pallets/evm-coder-substrate/CHANGELOG.mddiffbeforeafterboth--- a/pallets/evm-coder-substrate/CHANGELOG.md
+++ b/pallets/evm-coder-substrate/CHANGELOG.md
@@ -1,3 +1,14 @@
+<!-- bureaucrate goes here -->
+## [v0.1.3] 2022-08-16
+
+### Other changes
+
+- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
+
+- build: Upgrade polkadot to v0.9.26 85515e54c4ca1b82a2630034e55dcc804c643bf8
+
+- build: Upgrade polkadot to v0.9.25 cdfb9bdc7b205ff1b5134f034ef9973d769e5e6b
+
# Change Log
All notable changes to this project will be documented in this file.
@@ -6,7 +17,4 @@
### Fixed
- - Issue with error not being thrown when non existing function is called on collection contract
-
-
-
\ No newline at end of file
+ - Issue with error not being thrown when non existing function is called on collection contract
\ No newline at end of file
pallets/evm-coder-substrate/Cargo.tomldiffbeforeafterboth--- a/pallets/evm-coder-substrate/Cargo.toml
+++ b/pallets/evm-coder-substrate/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "pallet-evm-coder-substrate"
-version = "0.1.2"
+version = "0.1.3"
license = "GPLv3"
edition = "2021"
pallets/evm-contract-helpers/CHANGELOG.mddiffbeforeafterboth--- /dev/null
+++ b/pallets/evm-contract-helpers/CHANGELOG.md
@@ -0,0 +1,10 @@
+<!-- bureaucrate goes here -->
+## [v0.1.2] 2022-08-16
+
+### Other changes
+
+- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
+
+- build: Upgrade polkadot to v0.9.26 85515e54c4ca1b82a2630034e55dcc804c643bf8
+
+- build: Upgrade polkadot to v0.9.25 cdfb9bdc7b205ff1b5134f034ef9973d769e5e6b
\ No newline at end of file
pallets/evm-contract-helpers/Cargo.tomldiffbeforeafterboth--- a/pallets/evm-contract-helpers/Cargo.toml
+++ b/pallets/evm-contract-helpers/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "pallet-evm-contract-helpers"
-version = "0.1.1"
+version = "0.1.2"
license = "GPLv3"
edition = "2021"
pallets/evm-migration/CHANGELOG.mddiffbeforeafterboth--- /dev/null
+++ b/pallets/evm-migration/CHANGELOG.md
@@ -0,0 +1,17 @@
+<!-- bureaucrate goes here -->
+## [v0.1.1] 2022-08-16
+
+### Other changes
+
+- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
+
+- build: Upgrade polkadot to v0.9.26 85515e54c4ca1b82a2630034e55dcc804c643bf8
+
+- refactor: Remove `#[transactional]` from extrinsics 7fd36cea2f6e00c02c67ccc1de9649ae404efd31
+
+Every extrinsic now runs in transaction implicitly, and
+`#[transactional]` on pallet dispatchable is now meaningless
+
+Upstream-Change: https://github.com/paritytech/substrate/issues/10806
+
+- build: Upgrade polkadot to v0.9.25 cdfb9bdc7b205ff1b5134f034ef9973d769e5e6b
\ No newline at end of file
pallets/evm-migration/Cargo.tomldiffbeforeafterboth--- a/pallets/evm-migration/Cargo.toml
+++ b/pallets/evm-migration/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "pallet-evm-migration"
-version = "0.1.0"
+version = "0.1.1"
license = "GPLv3"
edition = "2021"
pallets/evm-transaction-payment/CHANGELOG.mddiffbeforeafterboth--- /dev/null
+++ b/pallets/evm-transaction-payment/CHANGELOG.md
@@ -0,0 +1,10 @@
+<!-- bureaucrate goes here -->
+## [v0.1.1] 2022-08-16
+
+### Other changes
+
+- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
+
+- build: Upgrade polkadot to v0.9.26 85515e54c4ca1b82a2630034e55dcc804c643bf8
+
+- build: Upgrade polkadot to v0.9.25 cdfb9bdc7b205ff1b5134f034ef9973d769e5e6b
\ No newline at end of file
pallets/evm-transaction-payment/Cargo.tomldiffbeforeafterboth--- a/pallets/evm-transaction-payment/Cargo.toml
+++ b/pallets/evm-transaction-payment/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "pallet-evm-transaction-payment"
-version = "0.1.0"
+version = "0.1.1"
license = "GPLv3"
edition = "2021"
pallets/fungible/CHANGELOG.mddiffbeforeafterboth--- a/pallets/fungible/CHANGELOG.md
+++ b/pallets/fungible/CHANGELOG.md
@@ -1,3 +1,23 @@
+<!-- bureaucrate goes here -->
+## [v0.1.3] 2022-08-16
+
+### Other changes
+
+- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
+
+- build: Upgrade polkadot to v0.9.26 85515e54c4ca1b82a2630034e55dcc804c643bf8
+
+- refactor: Switch to new prefix removal methods 26734e9567589d75cdd99e404eabf11d5a97d975
+
+New methods allows to call `remove_prefix` with limit multiple times
+in the same block
+However, we don't use prefix removal limits, so upgrade is
+straightforward
+
+Upstream-Change: https://github.com/paritytech/substrate/pull/11490
+
+- build: Upgrade polkadot to v0.9.25 cdfb9bdc7b205ff1b5134f034ef9973d769e5e6b
+
# Change Log
All notable changes to this project will be documented in this file.
@@ -13,7 +33,4 @@
### Added
- Implementation of RPC method `token_owners` returning 10 owners in no particular order.
- This was an internal request to improve the web interface and support fractionalization event.
-
-
-
\ No newline at end of file
+ This was an internal request to improve the web interface and support fractionalization event.
\ No newline at end of file
pallets/fungible/Cargo.tomldiffbeforeafterboth--- a/pallets/fungible/Cargo.toml
+++ b/pallets/fungible/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "pallet-fungible"
-version = "0.1.2"
+version = "0.1.3"
license = "GPLv3"
edition = "2021"
pallets/inflation/CHANGELOG.mddiffbeforeafterboth--- /dev/null
+++ b/pallets/inflation/CHANGELOG.md
@@ -0,0 +1,10 @@
+<!-- bureaucrate goes here -->
+## [v0.1.1] 2022-08-16
+
+### Other changes
+
+- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
+
+- build: Upgrade polkadot to v0.9.26 85515e54c4ca1b82a2630034e55dcc804c643bf8
+
+- build: Upgrade polkadot to v0.9.25 cdfb9bdc7b205ff1b5134f034ef9973d769e5e6b
\ No newline at end of file
pallets/inflation/Cargo.tomldiffbeforeafterboth--- a/pallets/inflation/Cargo.toml
+++ b/pallets/inflation/Cargo.toml
@@ -9,7 +9,7 @@
license = 'GPLv3'
name = 'pallet-inflation'
repository = 'https://github.com/UniqueNetwork/unique-chain'
-version = "0.1.0"
+version = "0.1.1"
[package.metadata.docs.rs]
targets = ['x86_64-unknown-linux-gnu']
pallets/nonfungible/CHANGELOG.mddiffbeforeafterboth--- a/pallets/nonfungible/CHANGELOG.md
+++ b/pallets/nonfungible/CHANGELOG.md
@@ -1,3 +1,23 @@
+<!-- bureaucrate goes here -->
+## [v0.1.4] 2022-08-16
+
+### Other changes
+
+- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
+
+- build: Upgrade polkadot to v0.9.26 85515e54c4ca1b82a2630034e55dcc804c643bf8
+
+- refactor: Switch to new prefix removal methods 26734e9567589d75cdd99e404eabf11d5a97d975
+
+New methods allows to call `remove_prefix` with limit multiple times
+in the same block
+However, we don't use prefix removal limits, so upgrade is
+straightforward
+
+Upstream-Change: https://github.com/paritytech/substrate/pull/11490
+
+- build: Upgrade polkadot to v0.9.25 cdfb9bdc7b205ff1b5134f034ef9973d769e5e6b
+
# Change Log
All notable changes to this project will be documented in this file.
@@ -18,4 +38,4 @@
- Implementation of RPC method `token_owners`.
For reasons of compatibility with this pallet, returns only one owner if token exists.
- This was an internal request to improve the web interface and support fractionalization event.
+ This was an internal request to improve the web interface and support fractionalization event.
\ No newline at end of file
pallets/nonfungible/Cargo.tomldiffbeforeafterboth--- a/pallets/nonfungible/Cargo.toml
+++ b/pallets/nonfungible/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "pallet-nonfungible"
-version = "0.1.3"
+version = "0.1.4"
license = "GPLv3"
edition = "2021"
pallets/proxy-rmrk-core/CHANGELOG.mddiffbeforeafterboth--- /dev/null
+++ b/pallets/proxy-rmrk-core/CHANGELOG.md
@@ -0,0 +1,17 @@
+<!-- bureaucrate goes here -->
+## [v0.1.2] 2022-08-16
+
+### Other changes
+
+- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
+
+- build: Upgrade polkadot to v0.9.26 85515e54c4ca1b82a2630034e55dcc804c643bf8
+
+- refactor: Remove `#[transactional]` from extrinsics 7fd36cea2f6e00c02c67ccc1de9649ae404efd31
+
+Every extrinsic now runs in transaction implicitly, and
+`#[transactional]` on pallet dispatchable is now meaningless
+
+Upstream-Change: https://github.com/paritytech/substrate/issues/10806
+
+- build: Upgrade polkadot to v0.9.25 cdfb9bdc7b205ff1b5134f034ef9973d769e5e6b
\ No newline at end of file
pallets/proxy-rmrk-core/Cargo.tomldiffbeforeafterboth--- a/pallets/proxy-rmrk-core/Cargo.toml
+++ b/pallets/proxy-rmrk-core/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "pallet-rmrk-core"
-version = "0.1.1"
+version = "0.1.2"
license = "GPLv3"
edition = "2021"
pallets/proxy-rmrk-equip/CHANGELOG.mddiffbeforeafterboth--- /dev/null
+++ b/pallets/proxy-rmrk-equip/CHANGELOG.md
@@ -0,0 +1,17 @@
+<!-- bureaucrate goes here -->
+## [v0.1.2] 2022-08-16
+
+### Other changes
+
+- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
+
+- build: Upgrade polkadot to v0.9.26 85515e54c4ca1b82a2630034e55dcc804c643bf8
+
+- refactor: Remove `#[transactional]` from extrinsics 7fd36cea2f6e00c02c67ccc1de9649ae404efd31
+
+Every extrinsic now runs in transaction implicitly, and
+`#[transactional]` on pallet dispatchable is now meaningless
+
+Upstream-Change: https://github.com/paritytech/substrate/issues/10806
+
+- build: Upgrade polkadot to v0.9.25 cdfb9bdc7b205ff1b5134f034ef9973d769e5e6b
\ No newline at end of file
pallets/proxy-rmrk-equip/Cargo.tomldiffbeforeafterboth--- a/pallets/proxy-rmrk-equip/Cargo.toml
+++ b/pallets/proxy-rmrk-equip/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "pallet-rmrk-equip"
-version = "0.1.1"
+version = "0.1.2"
license = "GPLv3"
edition = "2021"
pallets/refungible/CHANGELOG.mddiffbeforeafterboth--- a/pallets/refungible/CHANGELOG.md
+++ b/pallets/refungible/CHANGELOG.md
@@ -3,6 +3,25 @@
All notable changes to this project will be documented in this file.
<!-- bureaucrate goes here -->
+## [v0.2.3] 2022-08-16
+
+### Other changes
+
+- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
+
+- build: Upgrade polkadot to v0.9.26 85515e54c4ca1b82a2630034e55dcc804c643bf8
+
+- refactor: Switch to new prefix removal methods 26734e9567589d75cdd99e404eabf11d5a97d975
+
+New methods allows to call `remove_prefix` with limit multiple times
+in the same block
+However, we don't use prefix removal limits, so upgrade is
+straightforward
+
+Upstream-Change: https://github.com/paritytech/substrate/pull/11490
+
+- build: Upgrade polkadot to v0.9.25 cdfb9bdc7b205ff1b5134f034ef9973d769e5e6b
+
## [v0.2.2] 2022-08-04
### Product changes
pallets/refungible/Cargo.tomldiffbeforeafterboth--- a/pallets/refungible/Cargo.toml
+++ b/pallets/refungible/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "pallet-refungible"
-version = "0.2.2"
+version = "0.2.3"
license = "GPLv3"
edition = "2021"
pallets/scheduler/CHANGELOG.mddiffbeforeafterboth--- /dev/null
+++ b/pallets/scheduler/CHANGELOG.md
@@ -0,0 +1,10 @@
+<!-- bureaucrate goes here -->
+## [v0.1.1] 2022-08-16
+
+### Other changes
+
+- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
+
+- build: Upgrade polkadot to v0.9.26 85515e54c4ca1b82a2630034e55dcc804c643bf8
+
+- build: Upgrade polkadot to v0.9.25 cdfb9bdc7b205ff1b5134f034ef9973d769e5e6b
\ No newline at end of file
pallets/scheduler/Cargo.tomldiffbeforeafterboth--- a/pallets/scheduler/Cargo.toml
+++ b/pallets/scheduler/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "pallet-unique-scheduler"
-version = "0.1.0"
+version = "0.1.1"
authors = ["Unique Network <support@uniquenetwork.io>"]
edition = "2021"
license = "GPLv3"
pallets/structure/CHANGELOG.mddiffbeforeafterboth--- /dev/null
+++ b/pallets/structure/CHANGELOG.md
@@ -0,0 +1,10 @@
+<!-- bureaucrate goes here -->
+## [v0.1.2] 2022-08-16
+
+### Other changes
+
+- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
+
+- build: Upgrade polkadot to v0.9.26 85515e54c4ca1b82a2630034e55dcc804c643bf8
+
+- build: Upgrade polkadot to v0.9.25 cdfb9bdc7b205ff1b5134f034ef9973d769e5e6b
\ No newline at end of file
pallets/structure/Cargo.tomldiffbeforeafterboth--- a/pallets/structure/Cargo.toml
+++ b/pallets/structure/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "pallet-structure"
-version = "0.1.1"
+version = "0.1.2"
edition = "2021"
[dependencies]
pallets/unique/CHANGELOG.mddiffbeforeafterboth--- a/pallets/unique/CHANGELOG.md
+++ b/pallets/unique/CHANGELOG.md
@@ -1,3 +1,30 @@
+<!-- bureaucrate goes here -->
+## [v0.1.3] 2022-08-16
+
+### Other changes
+
+- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
+
+- build: Upgrade polkadot to v0.9.26 85515e54c4ca1b82a2630034e55dcc804c643bf8
+
+- refactor: Remove `#[transactional]` from extrinsics 7fd36cea2f6e00c02c67ccc1de9649ae404efd31
+
+Every extrinsic now runs in transaction implicitly, and
+`#[transactional]` on pallet dispatchable is now meaningless
+
+Upstream-Change: https://github.com/paritytech/substrate/issues/10806
+
+- refactor: Switch to new prefix removal methods 26734e9567589d75cdd99e404eabf11d5a97d975
+
+New methods allows to call `remove_prefix` with limit multiple times
+in the same block
+However, we don't use prefix removal limits, so upgrade is
+straightforward
+
+Upstream-Change: https://github.com/paritytech/substrate/pull/11490
+
+- build: Upgrade polkadot to v0.9.25 cdfb9bdc7b205ff1b5134f034ef9973d769e5e6b
+
# Change Log
All notable changes to this project will be documented in this file.
pallets/unique/Cargo.tomldiffbeforeafterboth--- a/pallets/unique/Cargo.toml
+++ b/pallets/unique/Cargo.toml
@@ -9,7 +9,7 @@
license = 'GPLv3'
name = 'pallet-unique'
repository = 'https://github.com/UniqueNetwork/unique-chain'
-version = "0.1.2"
+version = "0.1.3"
[package.metadata.docs.rs]
targets = ['x86_64-unknown-linux-gnu']
primitives/common/CHANGELOG.mddiffbeforeafterboth--- /dev/null
+++ b/primitives/common/CHANGELOG.md
@@ -0,0 +1,8 @@
+<!-- bureaucrate goes here -->
+## [v0.9.25] 2022-08-16
+
+### Other changes
+
+- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
+
+- build: Upgrade up-common to polkadot-v0.9.26 3df3531cadd6d2ed23afe838d3a71321b0f12c2e
\ No newline at end of file
primitives/common/Cargo.tomldiffbeforeafterboth--- a/primitives/common/Cargo.toml
+++ b/primitives/common/Cargo.toml
@@ -6,7 +6,7 @@
license = 'All Rights Reserved'
name = 'up-common'
repository = 'https://github.com/UniqueNetwork/unique-chain'
-version = '0.9.24'
+version = "0.9.25"
[features]
default = ['std']
primitives/data-structs/CHANGELOG.mddiffbeforeafterboth--- a/primitives/data-structs/CHANGELOG.md
+++ b/primitives/data-structs/CHANGELOG.md
@@ -3,6 +3,16 @@
All notable changes to this project will be documented in this file.
<!-- bureaucrate goes here -->
+## [v0.2.2] 2022-08-16
+
+### Other changes
+
+- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
+
+- build: Upgrade polkadot to v0.9.26 85515e54c4ca1b82a2630034e55dcc804c643bf8
+
+- build: Upgrade polkadot to v0.9.25 cdfb9bdc7b205ff1b5134f034ef9973d769e5e6b
+
## [v0.2.1] 2022-08-04
### Product changes
@@ -26,4 +36,4 @@
- Type aliases `CollectionName`, `CollectionDescription`, `CollectionTokenPrefix`
## [v0.1.1] - 2022-07-22
### Added
-- Аields with properties to `CreateReFungibleData` and `CreateRefungibleExData`.
+- Аields with properties to `CreateReFungibleData` and `CreateRefungibleExData`.
\ No newline at end of file
primitives/data-structs/Cargo.tomldiffbeforeafterboth--- a/primitives/data-structs/Cargo.toml
+++ b/primitives/data-structs/Cargo.toml
@@ -6,7 +6,7 @@
license = 'GPLv3'
homepage = "https://unique.network"
repository = 'https://github.com/UniqueNetwork/unique-chain'
-version = "0.2.1"
+version = "0.2.2"
[dependencies]
scale-info = { version = "2.0.1", default-features = false, features = [
primitives/rmrk-rpc/CHANGELOG.mddiffbeforeafterboth--- /dev/null
+++ b/primitives/rmrk-rpc/CHANGELOG.md
@@ -0,0 +1,10 @@
+<!-- bureaucrate goes here -->
+## [v0.0.2] 2022-08-16
+
+### Other changes
+
+- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
+
+- build: Upgrade polkadot to v0.9.26 85515e54c4ca1b82a2630034e55dcc804c643bf8
+
+- build: Upgrade polkadot to v0.9.25 cdfb9bdc7b205ff1b5134f034ef9973d769e5e6b
\ No newline at end of file
primitives/rmrk-rpc/Cargo.tomldiffbeforeafterboth--- a/primitives/rmrk-rpc/Cargo.toml
+++ b/primitives/rmrk-rpc/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rmrk-rpc"
-version = "0.0.1"
+version = "0.0.2"
license = ""
edition = "2021"
primitives/rpc/CHANGELOG.mddiffbeforeafterboth--- a/primitives/rpc/CHANGELOG.md
+++ b/primitives/rpc/CHANGELOG.md
@@ -1,3 +1,14 @@
+<!-- bureaucrate goes here -->
+## [v0.1.3] 2022-08-16
+
+### Other changes
+
+- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
+
+- build: Upgrade polkadot to v0.9.26 85515e54c4ca1b82a2630034e55dcc804c643bf8
+
+- build: Upgrade polkadot to v0.9.25 cdfb9bdc7b205ff1b5134f034ef9973d769e5e6b
+
# Change Log
All notable changes to this project will be documented in this file.
@@ -7,4 +18,4 @@
### Added
- Implementation of RPC method `token_owners` returning 10 owners in no particular order.
- This was an internal request to improve the web interface and support fractionalization event.
\ No newline at end of file
+ This was an internal request to improve the web interface and support fractionalization event.
\ No newline at end of file
primitives/rpc/Cargo.tomldiffbeforeafterboth--- a/primitives/rpc/Cargo.toml
+++ b/primitives/rpc/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "up-rpc"
-version = "0.1.2"
+version = "0.1.3"
license = "GPLv3"
edition = "2021"
runtime/opal/CHANGELOG.mddiffbeforeafterboth--- a/runtime/opal/CHANGELOG.md
+++ b/runtime/opal/CHANGELOG.md
@@ -1,3 +1,18 @@
+<!-- bureaucrate goes here -->
+## [v0.9.25] 2022-08-16
+
+### Bugfixes
+
+- Add missing config keys 74f532ac28dce15c15e7d576c074a58eba658c08
+
+### Other changes
+
+- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
+
+- build: Upgrade polkadot to v0.9.26 85515e54c4ca1b82a2630034e55dcc804c643bf8
+
+- build: Upgrade polkadot to v0.9.25 cdfb9bdc7b205ff1b5134f034ef9973d769e5e6b
+
# Change Log
-All notable changes to this project will be documented in this file.
+All notable changes to this project will be documented in this file.
\ No newline at end of file
runtime/opal/Cargo.tomldiffbeforeafterboth--- a/runtime/opal/Cargo.toml
+++ b/runtime/opal/Cargo.toml
@@ -10,7 +10,7 @@
license = 'GPLv3'
name = 'opal-runtime'
repository = 'https://github.com/UniqueNetwork/unique-chain'
-version = '0.9.24'
+version = "0.9.24"
[package.metadata.docs.rs]
targets = ['x86_64-unknown-linux-gnu']
runtime/tests/CHANGELOG.mddiffbeforeafterboth--- /dev/null
+++ b/runtime/tests/CHANGELOG.md
@@ -0,0 +1,18 @@
+<!-- bureaucrate goes here -->
+## [v0.1.1] 2022-08-16
+
+### Bugfixes
+
+- After conflicts b66d0b01b670bbbdf05431c6636a0300907f0ec8
+
+- Add missing config keys 74f532ac28dce15c15e7d576c074a58eba658c08
+
+### Other changes
+
+- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
+
+- build: Upgrade test runtime bdd7247a3eaa6f6d458f4320a8bbee98770da2b3
+
+- build: Upgrade polkadot to v0.9.26 85515e54c4ca1b82a2630034e55dcc804c643bf8
+
+- build: Upgrade polkadot to v0.9.25 cdfb9bdc7b205ff1b5134f034ef9973d769e5e6b
\ No newline at end of file
runtime/tests/Cargo.tomldiffbeforeafterboth--- a/runtime/tests/Cargo.toml
+++ b/runtime/tests/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tests"
-version = "0.1.0"
+version = "0.1.1"
edition = "2021"
[features]