Skip to content

Commit

Permalink
Upgrade upstream 2.0.0 rc5 (#14)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
11 people authored Sep 12, 2020
1 parent b2bf28b commit 62f3f1a
Show file tree
Hide file tree
Showing 13 changed files with 1,944 additions and 1,213 deletions.
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,9 @@

.DS_Store

.idea/
.idea/
# The cache for docker container dependency
.cargo

# The cache for chain data in container
.local
37 changes: 37 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Run ",
"type": "shell",
"command": "cargo",
"args": ["run", "--release", "--", "--dev"],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "new"
},
"problemMatcher": [
{
"owner": "rust",
"fileLocation": ["relative", "${workspaceRoot}"],
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(\\d+):(\\d+)\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"endLine": 4,
"endColumn": 5,
"severity": 6,
"message": 7
}
}
]
}
]
}
Loading

0 comments on commit 62f3f1a

Please sign in to comment.