git.delta.rocks / unique-network / refs/commits / 3a229769cc4c

difftreelog

Version cleanup

Greg Zaitsev2021-02-18parent: #73dc97f.patch.diff
in: master

5 files changed

modified.gitignorediffbeforeafterboth
--- a/.gitignore
+++ b/.gitignore
@@ -10,4 +10,6 @@
 einstein_key_file
 *store_key*.json
 
-/.idea/
\ No newline at end of file
+/.idea/
+
+tests/.vscode
\ No newline at end of file
modifiedCargo.lockdiffbeforeafterboth
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3456,7 +3456,7 @@
 
 [[package]]
 name = "nft-runtime"
-version = "3.0.0"
+version = "2.1.0"
 dependencies = [
  "frame-benchmarking",
  "frame-executive",
@@ -3785,7 +3785,7 @@
 
 [[package]]
 name = "pallet-nft"
-version = "3.0.0"
+version = "2.1.0"
 dependencies = [
  "frame-benchmarking",
  "frame-support",
modifiednode/Cargo.tomldiffbeforeafterboth
12description = 'Substrate node nft'12description = 'Substrate node nft'
13edition = '2018'13edition = '2018'
14homepage = 'https://usetech.com/blockchain'14homepage = 'https://usetech.com/blockchain'
15license = 'Unlicense'15license = 'All Rights Reserved'
16name = 'nft'16name = 'nft'
17repository = 'https://github.com/substrate-developer-hub/nft/'17repository = 'https://github.com/usetech-llc/nft_private/'
18version = '3.0.0'18version = '3.0.0'
1919
20[package.metadata.docs.rs]20[package.metadata.docs.rs]
29jsonrpc-core = '15.0.0'29jsonrpc-core = '15.0.0'
3030
31# Substrate dependencies31# Substrate dependencies
32nft-runtime = { path = '../runtime', version = '3.0.0' }32nft-runtime = { path = '../runtime', version = '2.1.0' }
33frame-benchmarking = {version = '2.0.1', git = 'https://github.com/usetech-llc/substrate.git', branch = 'unique'}33frame-benchmarking = {version = '2.0.1', git = 'https://github.com/usetech-llc/substrate.git', branch = 'unique'}
34frame-benchmarking-cli = {version = '2.0.1', git = 'https://github.com/usetech-llc/substrate.git', branch = 'unique'}34frame-benchmarking-cli = {version = '2.0.1', git = 'https://github.com/usetech-llc/substrate.git', branch = 'unique'}
35pallet-transaction-payment-rpc = {version = '2.0.1', git = 'https://github.com/usetech-llc/substrate.git', branch = 'unique'}35pallet-transaction-payment-rpc = {version = '2.0.1', git = 'https://github.com/usetech-llc/substrate.git', branch = 'unique'}
modifiedpallets/nft/Cargo.tomldiffbeforeafterboth
--- a/pallets/nft/Cargo.toml
+++ b/pallets/nft/Cargo.toml
@@ -6,7 +6,7 @@
 license = 'Unlicense'
 name = 'pallet-nft'
 repository = 'https://github.com/substrate-developer-hub/nft/'
-version = '3.0.0'
+version = '2.1.0'
 
 [package.metadata.docs.rs]
 targets = ['x86_64-unknown-linux-gnu']
modifiedruntime/Cargo.tomldiffbeforeafterboth
--- a/runtime/Cargo.toml
+++ b/runtime/Cargo.toml
@@ -1,11 +1,11 @@
 [package]
-authors = ['Substrate DevHub <https://github.com/substrate-developer-hub>']
+authors = ['UseTech Professional <https://usetech.com/blockchain>']
 edition = '2018'
 homepage = 'https://substrate.io'
-license = 'Unlicense'
+license = 'All Rights Reserved'
 name = 'nft-runtime'
 repository = 'https://github.com/usetech-llc/nft_parachain/'
-version = '3.0.0'
+version = '2.1.0'
 
 [package.metadata.docs.rs]
 targets = ['x86_64-unknown-linux-gnu']
@@ -25,7 +25,7 @@
 serde = { features = ['derive'], optional = true, version = '1.0.101' }
 
 # local dependencies
-pallet-nft = { path = '../pallets/nft', default-features = false, version = '3.0.0' }
+pallet-nft = { path = '../pallets/nft', default-features = false, version = '2.1.0' }
 
 # Substrate dependencies
 frame-benchmarking = { default-features = false, optional = true, version = '2.0.1' , git = 'https://github.com/usetech-llc/substrate.git', branch = 'unique' }