git.delta.rocks / unique-network / refs/commits / 92ff71b42f45

difftreelog

up node and runtime versions

Igor Kozyrev2021-12-06parent: #4332271.patch.diff
in: master

4 files changed

modifiedCargo.lockdiffbeforeafterboth
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -11527,7 +11527,7 @@
 
 [[package]]
 name = "unique-node"
-version = "0.9.12"
+version = "0.9.13"
 dependencies = [
  "cumulus-client-cli",
  "cumulus-client-collator",
@@ -11648,7 +11648,7 @@
 
 [[package]]
 name = "unique-runtime"
-version = "0.9.12"
+version = "0.9.13"
 dependencies = [
  "cumulus-pallet-aura-ext",
  "cumulus-pallet-dmp-queue",
modifiedlaunch-config.jsondiffbeforeafterboth
before · launch-config.json
1{2    "relaychain": {3        "bin": "../polkadot/target/release/polkadot",4        "chain": "rococo-local",5        "nodes": [6            {7                "name": "alice",8                "wsPort": 9844,9                "rpcPort": 9843,10                "port": 30444,11                "flags": [12                    "-lparachain::candidate_validation=debug"13                ]14            },15            {16                "name": "bob",17                "wsPort": 9855,18                "rpcPort": 9854,19                "port": 30555,20                "flags": [21                    "-lparachain::candidate_validation=debug"22                ]23            },24            {25                "name": "charlie",26                "wsPort": 9866,27                "rpcPort": 9865,28                "port": 30666,29                "flags": [30                    "-lparachain::candidate_validation=debug"31                ]32            },33            {34                "name": "dave",35                "wsPort": 9877,36                "rpcPort": 9876,37                "port": 30777,38                "flags": [39                    "-lparachain::candidate_validation=debug"40                ]41            }42        ],43        "genesis": {44            "runtime": {45                "runtime_genesis_config": {46                    "parachainsConfiguration": {47                        "config": {48                            "validation_upgrade_frequency": 1,49                            "validation_upgrade_delay": 150                        }51                    }52                }53            }54        }55    },56    "parachains": [57        {58            "bin": "../unique-chain/target/release/unique-collator",59            "id": "2000",60            "balance": "1000000000000000000000000",61            "nodes": [62                {63                    "port": 31200,64                    "wsPort": 9944,65                    "rpcPort": 9933,66                    "name": "alice",67                    "flags": [68                        "--rpc-cors=all",69                        "--unsafe-rpc-external",70                        "--unsafe-ws-external"71                    ]72                },73                {74                    "port": 31201,75                    "wsPort": 9945,76                    "rpcPort": 9934,77                    "name": "bob",78                    "flags": [79                        "--rpc-cors=all",80                        "--unsafe-rpc-external",81                        "--unsafe-ws-external"82                    ]83                }84            ]85        }86    ],87    "simpleParachains": [],88    "hrmpChannels": [],89    "finalization": false90}
after · launch-config.json
1{2    "relaychain": {3        "bin": "../polkadot/target/release/polkadot",4        "chain": "rococo-local",5        "nodes": [6            {7                "name": "alice",8                "wsPort": 9844,9                "rpcPort": 9843,10                "port": 30444,11                "flags": [12                    "-lparachain::candidate_validation=debug"13                ]14            },15            {16                "name": "bob",17                "wsPort": 9855,18                "rpcPort": 9854,19                "port": 30555,20                "flags": [21                    "-lparachain::candidate_validation=debug"22                ]23            },24            {25                "name": "charlie",26                "wsPort": 9866,27                "rpcPort": 9865,28                "port": 30666,29                "flags": [30                    "-lparachain::candidate_validation=debug"31                ]32            },33            {34                "name": "dave",35                "wsPort": 9877,36                "rpcPort": 9876,37                "port": 30777,38                "flags": [39                    "-lparachain::candidate_validation=debug"40                ]41            }42        ],43        "genesis": {44            "runtime": {45                "runtime_genesis_config": {46                    "parachainsConfiguration": {47                        "config": {48                            "validation_upgrade_frequency": 1,49                            "validation_upgrade_delay": 150                        }51                    }52                }53            }54        }55    },56    "parachains": [57        {58            "bin": "../unique-chain/target/release/unique-collator",59            "id": "1000",60            "balance": "1000000000000000000000000",61            "nodes": [62                {63                    "port": 31200,64                    "wsPort": 9944,65                    "rpcPort": 9933,66                    "name": "alice",67                    "flags": [68                        "--rpc-cors=all",69                        "--unsafe-rpc-external",70                        "--unsafe-ws-external"71                    ]72                },73                {74                    "port": 31201,75                    "wsPort": 9945,76                    "rpcPort": 9934,77                    "name": "bob",78                    "flags": [79                        "--rpc-cors=all",80                        "--unsafe-rpc-external",81                        "--unsafe-ws-external"82                    ]83                }84            ]85        }86    ],87    "simpleParachains": [],88    "hrmpChannels": [],89    "finalization": false90}
modifiednode/cli/Cargo.tomldiffbeforeafterboth
--- a/node/cli/Cargo.toml
+++ b/node/cli/Cargo.toml
@@ -245,12 +245,12 @@
 authors = ['Unique Network <support@uniquenetwork.io>']
 build = 'build.rs'
 description = 'Unique Node'
-edition = '2018'
+edition = '2021'
 homepage = 'https://unique.network'
 license = 'All Rights Reserved'
 name = 'unique-node'
 repository = 'https://github.com/UniqueNetwork/unique-chain'
-version = '0.9.12'
+version = '0.9.13'
 
 [[bin]]
 name = 'unique-collator'
modifiedruntime/Cargo.tomldiffbeforeafterboth
--- a/runtime/Cargo.toml
+++ b/runtime/Cargo.toml
@@ -5,12 +5,12 @@
 authors = ['Unique Network <support@uniquenetwork.io>']
 build = 'build.rs'
 description = 'Unique Runtime'
-edition = '2018'
+edition = '2021'
 homepage = 'https://unique.network'
 license = 'All Rights Reserved'
 name = 'unique-runtime'
 repository = 'https://github.com/UniqueNetwork/unique-chain'
-version = '0.9.12'
+version = '0.9.13'
 
 [package.metadata.docs.rs]
 targets = ['x86_64-unknown-linux-gnu']