--- a/Cargo.lock +++ b/Cargo.lock @@ -5722,7 +5722,7 @@ [[package]] name = "pallet-common" -version = "0.1.3" +version = "0.1.4" dependencies = [ "ethereum", "evm-coder", @@ -5869,7 +5869,7 @@ [[package]] name = "pallet-evm-coder-substrate" -version = "0.1.0" +version = "0.1.1" dependencies = [ "ethereum", "evm-coder", @@ -5887,7 +5887,7 @@ [[package]] name = "pallet-evm-contract-helpers" -version = "0.1.0" +version = "0.1.1" dependencies = [ "evm-coder", "fp-evm-mapping", @@ -5944,7 +5944,7 @@ [[package]] name = "pallet-fungible" -version = "0.1.1" +version = "0.1.2" dependencies = [ "ethereum", "evm-coder", @@ -6189,7 +6189,7 @@ [[package]] name = "pallet-nonfungible" -version = "0.1.2" +version = "0.1.3" dependencies = [ "ethereum", "evm-coder", @@ -6311,8 +6311,9 @@ [[package]] name = "pallet-refungible" -version = "0.2.1" +version = "0.2.2" dependencies = [ + "derivative", "ethereum", "evm-coder", "frame-benchmarking", @@ -6333,7 +6334,7 @@ [[package]] name = "pallet-rmrk-core" -version = "0.1.0" +version = "0.1.1" dependencies = [ "derivative", "frame-benchmarking", @@ -6354,7 +6355,7 @@ [[package]] name = "pallet-rmrk-equip" -version = "0.1.0" +version = "0.1.1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6484,7 +6485,7 @@ [[package]] name = "pallet-structure" -version = "0.1.0" +version = "0.1.1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6629,7 +6630,7 @@ [[package]] name = "pallet-unique" -version = "0.1.1" +version = "0.1.2" dependencies = [ "ethereum", "evm-coder", @@ -12732,7 +12733,7 @@ [[package]] name = "up-data-structs" -version = "0.2.0" +version = "0.2.1" dependencies = [ "derivative", "frame-support", @@ -12750,7 +12751,7 @@ [[package]] name = "up-rpc" -version = "0.1.1" +version = "0.1.2" dependencies = [ "pallet-common", "pallet-evm", --- a/pallets/common/Cargo.toml +++ b/pallets/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-common" -version = "0.1.3" +version = "0.1.4" license = "GPLv3" edition = "2021" --- 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.0" +version = "0.1.1" license = "GPLv3" edition = "2021" --- 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.0" +version = "0.1.1" license = "GPLv3" edition = "2021" --- a/pallets/fungible/Cargo.toml +++ b/pallets/fungible/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-fungible" -version = "0.1.1" +version = "0.1.2" license = "GPLv3" edition = "2021" --- 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.0" [package.metadata.docs.rs] targets = ['x86_64-unknown-linux-gnu'] --- a/pallets/nonfungible/Cargo.toml +++ b/pallets/nonfungible/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-nonfungible" -version = "0.1.2" +version = "0.1.3" license = "GPLv3" edition = "2021" --- 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.0" +version = "0.1.1" license = "GPLv3" edition = "2021" --- 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.0" +version = "0.1.1" license = "GPLv3" edition = "2021" --- a/pallets/refungible/CHANGELOG.md +++ b/pallets/refungible/CHANGELOG.md @@ -2,6 +2,25 @@ All notable changes to this project will be documented in this file. + +## [v0.2.2] 2022-08-04 + +### Product changes + +- Now RefungibleMultipleItems may only receive single user on type level. + +### Added features + +- Implement property RPC 7bf45b532e32daa91f03c157b58874d21b42ae1f + +### Other changes + +- refactor: Disallow invalid bulk mints 53fec71cf728dddd012257b407ea30441e699f88 + +`create_multiple_items_ex` was allowing invalid (that will be always +rejected at runtime level) refungible mint extrinsics, by passing +multiple users into `RefungibleMultipleItems` call. + ## [v0.2.1] - 2022-07-27 ### New features --- a/pallets/refungible/Cargo.toml +++ b/pallets/refungible/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-refungible" -version = "0.2.1" +version = "0.2.2" license = "GPLv3" edition = "2021" --- a/pallets/structure/Cargo.toml +++ b/pallets/structure/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-structure" -version = "0.1.0" +version = "0.1.1" edition = "2021" [dependencies] --- 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.1' +version = "0.1.2" [package.metadata.docs.rs] targets = ['x86_64-unknown-linux-gnu'] --- a/primitives/data-structs/CHANGELOG.md +++ b/primitives/data-structs/CHANGELOG.md @@ -2,6 +2,21 @@ All notable changes to this project will be documented in this file. + +## [v0.2.1] 2022-08-04 + +### Product changes + +- Now RefungibleMultipleItems may only receive single user on type level. + +### Other changes + +- refactor: Disallow invalid bulk mints 53fec71cf728dddd012257b407ea30441e699f88 + +`create_multiple_items_ex` was allowing invalid (that will be always +rejected at runtime level) refungible mint extrinsics, by passing +multiple users into `RefungibleMultipleItems` call. + ## [v0.2.0] - 2022-08-01 ### Deprecated - `CreateReFungibleData::const_data` @@ -11,4 +26,4 @@ - Type aliases `CollectionName`, `CollectionDescription`, `CollectionTokenPrefix` ## [v0.1.1] - 2022-07-22 ### Added -- Аields with properties to `CreateReFungibleData` and `CreateRefungibleExData`. \ No newline at end of file +- Аields with properties to `CreateReFungibleData` and `CreateRefungibleExData`. --- 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.0' +version = "0.2.1" [dependencies] scale-info = { version = "2.0.1", default-features = false, features = [ --- a/primitives/rmrk-traits/Cargo.toml +++ b/primitives/rmrk-traits/Cargo.toml @@ -6,7 +6,7 @@ license = 'GPLv3' homepage = "https://unique.network" repository = 'https://github.com/UniqueNetwork/unique-chain' -version = '0.1.0' +version = "0.1.0" [dependencies] scale-info = { version = "2.0.1", default-features = false, features = ["derive"] } --- a/primitives/rpc/Cargo.toml +++ b/primitives/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "up-rpc" -version = "0.1.1" +version = "0.1.2" license = "GPLv3" edition = "2021"