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
before · pallets/refungible/Cargo.toml
1[package]2name = "pallet-refungible"3version = "0.1.0"4license = "GPLv3"5edition = "2021"67[dependencies.codec]8default-features = false9features = ['derive']10package = 'parity-scale-codec'11version = '3.1.2'1213[dependencies]14frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }15frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }16sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }17sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }18sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }19pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }20pallet-common = { default-features = false, path = '../common' }21pallet-structure = { default-features = false, path = '../structure' }22up-data-structs = { default-features = false, path = '../../primitives/data-structs' }23frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }24scale-info = { version = "2.0.1", default-features = false, features = [25    "derive",26] }27struct-versioning = { path = "../../crates/struct-versioning" }2829[features]30default = ["std"]31std = [32    "frame-support/std",33    "frame-system/std",34    "sp-runtime/std",35    "sp-std/std",36    "up-data-structs/std",37    "pallet-common/std",38    "pallet-structure/std",39    'frame-benchmarking/std',40    "pallet-evm/std",41]42runtime-benchmarks = [43    'frame-benchmarking',44    'frame-support/runtime-benchmarks',45    'frame-system/runtime-benchmarks',46]
after · pallets/refungible/Cargo.toml
1[package]2name = "pallet-refungible"3version = "0.1.1"4license = "GPLv3"5edition = "2021"67[dependencies.codec]8default-features = false9features = ['derive']10package = 'parity-scale-codec'11version = '3.1.2'1213[dependencies]14frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }15frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }16sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }17sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }18sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }19pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }20pallet-common = { default-features = false, path = '../common' }21pallet-structure = { default-features = false, path = '../structure' }22up-data-structs = { default-features = false, path = '../../primitives/data-structs' }23frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }24scale-info = { version = "2.0.1", default-features = false, features = [25    "derive",26] }27struct-versioning = { path = "../../crates/struct-versioning" }2829[features]30default = ["std"]31std = [32    "frame-support/std",33    "frame-system/std",34    "sp-runtime/std",35    "sp-std/std",36    "up-data-structs/std",37    "pallet-common/std",38    "pallet-structure/std",39    'frame-benchmarking/std',40    "pallet-evm/std",41]42runtime-benchmarks = [43    'frame-benchmarking',44    'frame-support/runtime-benchmarks',45    'frame-system/runtime-benchmarks',46]
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
--- 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.1.0'
+version = '0.1.1'
 
 [dependencies]
 scale-info = { version = "2.0.1", default-features = false, features = [
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