difftreelog
misk: Fixing chages
in: master
6 files changed
Cargo.lockdiffbeforeafterboth--- a/Cargo.lock
+++ b/Cargo.lock
@@ -5731,7 +5731,7 @@
[[package]]
name = "pallet-common"
-version = "0.1.2"
+version = "0.1.3"
dependencies = [
"ethereum",
"evm-coder",
@@ -6198,7 +6198,7 @@
[[package]]
name = "pallet-nonfungible"
-version = "0.1.1"
+version = "0.1.2"
dependencies = [
"ethereum",
"evm-coder",
@@ -6638,7 +6638,7 @@
[[package]]
name = "pallet-unique"
-version = "0.1.0"
+version = "0.1.1"
dependencies = [
"ethereum",
"evm-coder",
@@ -12737,7 +12737,7 @@
[[package]]
name = "up-data-structs"
-version = "0.1.1"
+version = "0.1.2"
dependencies = [
"derivative",
"frame-support",
pallets/unique/CHANGELOG.mddiffbeforeafterboth--- /dev/null
+++ b/pallets/unique/CHANGELOG.md
@@ -0,0 +1,9 @@
+# Change Log
+
+All notable changes to this project will be documented in this file.
+
+## [v0.1.1] - 2022-07-25
+### Added
+- Method for creating `ERC721Metadata` compatible NFT collection.
+- Method for creating `ERC721Metadata` compatible ReFungible collection.
+- Method for creating ReFungible collection.
pallets/unique/Cargo.tomldiffbeforeafterboth1################################################################################2# Package34[package]5authors = ['Unique Network <support@uniquenetwork.io>']6description = 'Unique Pallet'7edition = '2021'8homepage = 'https://unique.network'9license = 'GPLv3'10name = 'pallet-unique'11repository = 'https://github.com/UniqueNetwork/unique-chain'12version = '0.1.0'1314[package.metadata.docs.rs]15targets = ['x86_64-unknown-linux-gnu']1617[features]18default = ['std']19runtime-benchmarks = ['frame-benchmarking', 'pallet-common/runtime-benchmarks']20std = [21 'codec/std',22 'serde/std',23 'frame-support/std',24 'frame-system/std',25 'pallet-evm/std',26 'pallet-common/std',27 'up-data-structs/std',28 'sp-std/std',29 'sp-runtime/std',30 'frame-benchmarking/std',31 'evm-coder/std',32 'pallet-evm-coder-substrate/std',33 'pallet-nonfungible/std',34]35limit-testing = ["up-data-structs/limit-testing"]3637################################################################################38# Standart Dependencies3940[dependencies.serde]41default-features = false42features = ['derive']43version = '1.0.130'4445[dependencies.ethereum]46version = "0.12.0"47default-features = false4849################################################################################50# Substrate Dependencies5152[dependencies.codec]53default-features = false54features = ['derive']55package = 'parity-scale-codec'56version = '3.1.2'5758[dependencies.frame-benchmarking]59default-features = false60optional = true61git = "https://github.com/paritytech/substrate"62branch = "polkadot-v0.9.24"6364[dependencies.frame-support]65default-features = false66git = "https://github.com/paritytech/substrate"67branch = "polkadot-v0.9.24"6869[dependencies.frame-system]70default-features = false71git = "https://github.com/paritytech/substrate"72branch = "polkadot-v0.9.24"7374[dependencies.sp-std]75default-features = false76git = "https://github.com/paritytech/substrate"77branch = "polkadot-v0.9.24"7879[dependencies.sp-runtime]80default-features = false81git = "https://github.com/paritytech/substrate"82branch = "polkadot-v0.9.24"8384[dependencies.sp-core]85default-features = false86git = "https://github.com/paritytech/substrate"87branch = "polkadot-v0.9.24"8889[dependencies.sp-io]90default-features = false91git = "https://github.com/paritytech/substrate"92branch = "polkadot-v0.9.24"9394################################################################################95# Local Dependencies96[dependencies]97up-data-structs = { default-features = false, path = "../../primitives/data-structs" }98scale-info = { version = "2.0.1", default-features = false, features = [99 "derive",100] }101pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }102pallet-common = { default-features = false, path = "../common" }103evm-coder = { default-features = false, path = '../../crates/evm-coder' }104pallet-evm-coder-substrate = { default-features = false, path = '../../pallets/evm-coder-substrate' }105pallet-nonfungible = { default-features = false, path = '../../pallets/nonfungible' }106pallet-refungible = { default-features = false, path = '../../pallets/refungible' }1################################################################################2# Package34[package]5authors = ['Unique Network <support@uniquenetwork.io>']6description = 'Unique Pallet'7edition = '2021'8homepage = 'https://unique.network'9license = 'GPLv3'10name = 'pallet-unique'11repository = 'https://github.com/UniqueNetwork/unique-chain'12version = '0.1.1'1314[package.metadata.docs.rs]15targets = ['x86_64-unknown-linux-gnu']1617[features]18default = ['std']19runtime-benchmarks = ['frame-benchmarking', 'pallet-common/runtime-benchmarks']20std = [21 'codec/std',22 'serde/std',23 'frame-support/std',24 'frame-system/std',25 'pallet-evm/std',26 'pallet-common/std',27 'up-data-structs/std',28 'sp-std/std',29 'sp-runtime/std',30 'frame-benchmarking/std',31 'evm-coder/std',32 'pallet-evm-coder-substrate/std',33 'pallet-nonfungible/std',34]35limit-testing = ["up-data-structs/limit-testing"]3637################################################################################38# Standart Dependencies3940[dependencies.serde]41default-features = false42features = ['derive']43version = '1.0.130'4445[dependencies.ethereum]46version = "0.12.0"47default-features = false4849################################################################################50# Substrate Dependencies5152[dependencies.codec]53default-features = false54features = ['derive']55package = 'parity-scale-codec'56version = '3.1.2'5758[dependencies.frame-benchmarking]59default-features = false60optional = true61git = "https://github.com/paritytech/substrate"62branch = "polkadot-v0.9.24"6364[dependencies.frame-support]65default-features = false66git = "https://github.com/paritytech/substrate"67branch = "polkadot-v0.9.24"6869[dependencies.frame-system]70default-features = false71git = "https://github.com/paritytech/substrate"72branch = "polkadot-v0.9.24"7374[dependencies.sp-std]75default-features = false76git = "https://github.com/paritytech/substrate"77branch = "polkadot-v0.9.24"7879[dependencies.sp-runtime]80default-features = false81git = "https://github.com/paritytech/substrate"82branch = "polkadot-v0.9.24"8384[dependencies.sp-core]85default-features = false86git = "https://github.com/paritytech/substrate"87branch = "polkadot-v0.9.24"8889[dependencies.sp-io]90default-features = false91git = "https://github.com/paritytech/substrate"92branch = "polkadot-v0.9.24"9394################################################################################95# Local Dependencies96[dependencies]97up-data-structs = { default-features = false, path = "../../primitives/data-structs" }98scale-info = { version = "2.0.1", default-features = false, features = [99 "derive",100] }101pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }102pallet-common = { default-features = false, path = "../common" }103evm-coder = { default-features = false, path = '../../crates/evm-coder' }104pallet-evm-coder-substrate = { default-features = false, path = '../../pallets/evm-coder-substrate' }105pallet-nonfungible = { default-features = false, path = '../../pallets/nonfungible' }106pallet-refungible = { default-features = false, path = '../../pallets/refungible' }primitives/data-structs/CHANGELOG.mddiffbeforeafterboth--- /dev/null
+++ b/primitives/data-structs/CHANGELOG.md
@@ -0,0 +1,11 @@
+# Change Log
+
+All notable changes to this project will be documented in this file.
+
+
+## [v0.1.2] - 2022-07-25
+### Added
+- 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
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.1.1'
+version = '0.1.2'
[dependencies]
scale-info = { version = "2.0.1", default-features = false, features = [
primitives/data-structs/Changelog.mddiffbeforeafterboth--- a/primitives/data-structs/Changelog.md
+++ /dev/null
@@ -1,3 +0,0 @@
-### 0.1.1
----
-* Added fields with properties to `CreateReFungibleData` and `CreateRefungibleExData`.
\ No newline at end of file