-
Notifications
You must be signed in to change notification settings - Fork 215
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release v0.2.0 Berlin #1090
Merged
Merged
Release v0.2.0 Berlin #1090
Changes from 19 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
16a3007
bump crates version
xermicus 987b198
update README
xermicus 3c50bc6
update version refs in docs
xermicus 0c09c78
update CI version refs
xermicus f0eb00d
add xermicus changelog items
xermicus bd90670
Merge branch 'main' into release-0_2
xermicus b12fb05
update changelog
xermicus ecf82c1
more changelogs
xermicus 9d33ffb
update roadmap
xermicus 01dbd05
Update CHANGELOG.md
xermicus 16da3c8
Update CHANGELOG.md
xermicus a3be38e
Update CHANGELOG.md
xermicus ff151c8
Update CHANGELOG.md
xermicus 1f9b700
Update CHANGELOG.md
xermicus 042fc8b
Update CHANGELOG.md
xermicus 20e5972
Update CHANGELOG.md
xermicus 9db69a3
Update CHANGELOG.md
xermicus 6a97585
rephrase
xermicus 946f727
more rephrasing
xermicus ee221a6
Update CHANGELOG.md
xermicus 3f3f6b4
Update CHANGELOG.md
xermicus File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "solang" | ||
version = "0.1.13" | ||
version = "0.2.0" | ||
authors = ["Sean Young <[email protected]>"] | ||
homepage = "https://github.com/hyperledger/solang" | ||
documentation = "https://solang.readthedocs.io/" | ||
|
@@ -46,7 +46,7 @@ itertools = "0.10" | |
num-rational = "0.4" | ||
indexmap = "1.8" | ||
once_cell = "1.10" | ||
solang-parser = { path = "solang-parser", version = "0.1.18" } | ||
solang-parser = { path = "solang-parser", version = "0.2.0" } | ||
codespan-reporting = "0.11" | ||
phf = { version = "0.11", features = ["macros"] } | ||
rust-lapper = "1.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "solang-parser" | ||
version = "0.1.18" | ||
version = "0.2.0" | ||
authors = ["Sean Young <[email protected]>"] | ||
homepage = "https://github.com/hyperledger/solang" | ||
documentation = "https://solang.readthedocs.io/" | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These files are built during release, so usually we update these after release (not ideal)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this work if first tag it and let the release job run? Since this is in the
test.yml
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The release job is run in parallel to the test job, so it will work if we re-run it after the release job.
I don't know a way of making the test workflow depend on the release workflow, conditionally if there is a release workflow.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As discussed on todays standup, to achieve this the first step would be to split our CI workflows to separate
build
fromtest
jobs, so that early stagebuild
artifacts can be used for tests but also as release assets. A further improvement would be to use something like bazel to gain the ability to "run" the CI locally.But how should we proceed here, should we try it like this (with the re run) or should I undo these changes for a follow up (having it included here would be nicer IMO)?