Skip to content

Commit 62f3f1a

Browse files
brenziriusricardoDan Forbeskaichaosunjoepetrowski
authoredSep 12, 2020
Upgrade upstream 2.0.0 rc5 (#14)
* alpha.6 to github (#37) * alpha.6 to github * fix format * Update to 2.0.0-alpha.7 (#38) Closes #35 Thanks to @brenzi for the work he did on #36 I copied a lot of it 🙏 * Use docker to setup a local dev chain (#41) * use docker to setup a local dev chain. * install docker link * update command * Update README.md Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> * more commands to start or check a node. * purge chain in docker Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> * fix: README update on docker usage (#43) * use docker to setup a local dev chain. * install docker link * update command * Update README.md Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> * more commands to start or check a node. * purge chain in docker * update README Co-authored-by: Kaichao Sun <kaichaosuna@gmail.com> Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> * Upgrade to Substrate v2.0.0-alpha.8 (#44) Co-authored-by: Dan Forbes <dan@danforbes.dev> * Update to v2.0.0-rc1 (#45) * Upgrade to Substrate v2.0.0-rc2 (#46) * change (ci): new CI image * Upgrade to v2.0.0-rc3 * Fix manual upgrade errors and update Cargo lockfile * Add some playground love (#57) * 🔖 update image * Playground updates (#58) * Fixed typo * Updated image organization * 🔖 update image * Get rid of that guy. Use tag (#59) * 🔖 update image * Updated base template image (#61) * 🔖 update image * Upgrade to v2.0.0-rc4 (#62) * Upgrade to v2.0.0-rc4 * Better updates to README Co-authored-by: Joshy Orndorff <JoshOrndorff@users.noreply.github.com> Co-authored-by: Joshy Orndorff <JoshOrndorff@users.noreply.github.com> * 🔖 update image * Upgrade to v2.0.0-rc5 (#65) * 🔖 update image * Remove unused dependencies (#66) * 🔖 update image * Update serde dependency per @thiolliere (#68) & fix OpaqueBlock paritytech/substrate#6557 (comment) * 🔖 update image * upgrade dependencies to rc5 * fix upgrade and bump version Co-authored-by: Ricardo Rius <9488369+riusricardo@users.noreply.github.com> Co-authored-by: Dan Forbes <dan@parity.io> Co-authored-by: kaichao <kaichaosuna@gmail.com> Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> Co-authored-by: Jimmy Chu <jimmy@parity.io> Co-authored-by: Dan Forbes <dan@danforbes.dev> Co-authored-by: Denis P <denis.pisarev@parity.io> Co-authored-by: Joshy Orndorff <JoshOrndorff@users.noreply.github.com> Co-authored-by: Julien Eluard <jeluard@users.noreply.github.com> Co-authored-by: Caio <c410.f3r@gmail.com>
1 parent b2bf28b commit 62f3f1a

13 files changed

+1944
-1213
lines changed
 

‎.gitignore

+6-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,9 @@
66

77
.DS_Store
88

9-
.idea/
9+
.idea/
10+
# The cache for docker container dependency
11+
.cargo
12+
13+
# The cache for chain data in container
14+
.local

‎.vscode/tasks.json

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"label": "Run ",
8+
"type": "shell",
9+
"command": "cargo",
10+
"args": ["run", "--release", "--", "--dev"],
11+
"group": {
12+
"kind": "build",
13+
"isDefault": true
14+
},
15+
"presentation": {
16+
"reveal": "always",
17+
"panel": "new"
18+
},
19+
"problemMatcher": [
20+
{
21+
"owner": "rust",
22+
"fileLocation": ["relative", "${workspaceRoot}"],
23+
"pattern": {
24+
"regexp": "^(.*):(\\d+):(\\d+):\\s+(\\d+):(\\d+)\\s+(warning|error):\\s+(.*)$",
25+
"file": 1,
26+
"line": 2,
27+
"column": 3,
28+
"endLine": 4,
29+
"endColumn": 5,
30+
"severity": 6,
31+
"message": 7
32+
}
33+
}
34+
]
35+
}
36+
]
37+
}

0 commit comments

Comments
 (0)
Please sign in to comment.