git.delta.rocks / unique-network / refs/commits / 8e054576cf61

difftreelog

misc: Changelog's added.

Trubnikov Sergey2022-07-15parent: #c7ac40c.patch.diff
in: master

4 files changed

modifiedpallets/refungible/Cargo.tomldiffbeforeafterboth
--- a/pallets/refungible/Cargo.toml
+++ b/pallets/refungible/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "pallet-refungible"
-version = "0.1.0"
+version = "0.1.1"
 license = "GPLv3"
 edition = "2021"
 
addedpallets/refungible/Changelog.mddiffbeforeafterboth
--- /dev/null
+++ b/pallets/refungible/Changelog.md
@@ -0,0 +1,3 @@
+### 0.1.1
+---
+* Added support for properties for RFT collections and tokens.
modifiedprimitives/data-structs/Cargo.tomldiffbeforeafterboth
before · primitives/data-structs/Cargo.toml
1[package]2name = "up-data-structs"3authors = ["Unique Network <support@uniquenetwork.io>"]4description = "Unique data structs definitions"5edition = "2021"6license = 'GPLv3'7homepage = "https://unique.network"8repository = 'https://github.com/UniqueNetwork/unique-chain'9version = '0.1.0'1011[dependencies]12scale-info = { version = "2.0.1", default-features = false, features = [13  "derive",14] }15codec = { package = "parity-scale-codec", version = "3.1.2", default-features = false, features = [16  'derive',17] }18serde = { version = "1.0.130", features = [19  'derive',20], default-features = false, optional = true }21frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }22frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }23sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }24sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }25sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }26derivative = { version = "2.2.0", features = ["use_core"] }27struct-versioning = { path = "../../crates/struct-versioning" }28pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }29rmrk-traits = { default-features = false, path = "../rmrk-traits" }3031[features]32default = ["std"]33std = [34  "serde1",35  "serde/std",36  "codec/std",37  "frame-system/std",38  "frame-support/std",39  "sp-runtime/std",40  "sp-core/std",41  "sp-std/std",42  "pallet-evm/std",43  "rmrk-traits/std",44]45serde1 = ["serde/alloc"]46limit-testing = []47runtime-benchmarks = []
after · primitives/data-structs/Cargo.toml
1[package]2name = "up-data-structs"3authors = ["Unique Network <support@uniquenetwork.io>"]4description = "Unique data structs definitions"5edition = "2021"6license = 'GPLv3'7homepage = "https://unique.network"8repository = 'https://github.com/UniqueNetwork/unique-chain'9version = '0.1.1'1011[dependencies]12scale-info = { version = "2.0.1", default-features = false, features = [13  "derive",14] }15codec = { package = "parity-scale-codec", version = "3.1.2", default-features = false, features = [16  'derive',17] }18serde = { version = "1.0.130", features = [19  'derive',20], default-features = false, optional = true }21frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }22frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }23sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }24sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }25sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }26derivative = { version = "2.2.0", features = ["use_core"] }27struct-versioning = { path = "../../crates/struct-versioning" }28pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }29rmrk-traits = { default-features = false, path = "../rmrk-traits" }3031[features]32default = ["std"]33std = [34  "serde1",35  "serde/std",36  "codec/std",37  "frame-system/std",38  "frame-support/std",39  "sp-runtime/std",40  "sp-core/std",41  "sp-std/std",42  "pallet-evm/std",43  "rmrk-traits/std",44]45serde1 = ["serde/alloc"]46limit-testing = []47runtime-benchmarks = []
addedprimitives/data-structs/Changelog.mddiffbeforeafterboth
--- /dev/null
+++ b/primitives/data-structs/Changelog.md
@@ -0,0 +1,3 @@
+### 0.1.1
+---
+* Added fields with properties to `CreateReFungibleData` and `CreateRefungibleExData`.
\ No newline at end of file