-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
64 additions
and
25 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Changelog | ||
|
||
## Unreleased | ||
|
||
## v0.1.0-dev.5 | ||
|
||
This is development pre-release. | ||
|
||
# Added | ||
- Implement the `CODESIZE` and `EXTCODESIZE` opcodes. | ||
|
||
# Changed | ||
- Include the full revive version in the contract metadata. | ||
|
||
# Fixed | ||
|
||
## v0.1.0-dev-4 | ||
|
||
This is development pre-release. | ||
|
||
# Added | ||
- Support the `ORIGIN` opcode. | ||
|
||
# Changed | ||
- Update polkavm to `v0.14.0`. | ||
- Enable the `a`, `fast-unaligned-access` and `xtheadcondmov` LLVM target features, decreasing the code size for some contracts. | ||
|
||
# Fixed |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ resolver = "2" | |
members = ["crates/*"] | ||
|
||
[workspace.package] | ||
version = "0.1.0" | ||
version = "0.1.0-dev.5" | ||
authors = [ | ||
"Cyrill Leutwiler <[email protected]>", | ||
"Parity Technologies <[email protected]>", | ||
|
@@ -14,18 +14,18 @@ repository = "https://github.com/paritytech/revive" | |
rust-version = "1.80.0" | ||
|
||
[workspace.dependencies] | ||
revive-benchmarks = { version = "0.1.0", path = "crates/benchmarks" } | ||
revive-builtins = { version = "0.1.0", path = "crates/builtins" } | ||
revive-common = { version = "0.1.0", path = "crates/common" } | ||
revive-differential = { version = "0.1.0", path = "crates/differential" } | ||
revive-integration = { version = "0.1.0", path = "crates/integration" } | ||
revive-linker = { version = "0.1.0", path = "crates/linker" } | ||
lld-sys = { version = "0.1.0", path = "crates/lld-sys" } | ||
revive-llvm-context = { version = "0.1.0", path = "crates/llvm-context" } | ||
revive-runtime-api = { version = "0.1.0", path = "crates/runtime-api" } | ||
revive-runner = { version = "0.1.0", path = "crates/runner" } | ||
revive-solidity = { version = "0.1.0", path = "crates/solidity" } | ||
revive-stdlib = { version = "0.1.0", path = "crates/stdlib" } | ||
revive-benchmarks = { version = "0.1.0-dev.5", path = "crates/benchmarks" } | ||
revive-builtins = { version = "0.1.0-dev.5", path = "crates/builtins" } | ||
revive-common = { version = "0.1.0-dev.5", path = "crates/common" } | ||
revive-differential = { version = "0.1.0-dev.5", path = "crates/differential" } | ||
revive-integration = { version = "0.1.0-dev.5", path = "crates/integration" } | ||
revive-linker = { version = "0.1.0-dev.5", path = "crates/linker" } | ||
lld-sys = { version = "0.1.0-dev.5", path = "crates/lld-sys" } | ||
revive-llvm-context = { version = "0.1.0-dev.5", path = "crates/llvm-context" } | ||
revive-runtime-api = { version = "0.1.0-dev.5", path = "crates/runtime-api" } | ||
revive-runner = { version = "0.1.0-dev.5", path = "crates/runner" } | ||
revive-solidity = { version = "0.1.0-dev.5", path = "crates/solidity" } | ||
revive-stdlib = { version = "0.1.0-dev.5", path = "crates/stdlib" } | ||
|
||
hex = "0.4" | ||
petgraph = "0.6" | ||
|
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Release checklist | ||
|
||
Prior to the first stable release we neither have formal release processes nor do we follow a fixed release schedule. | ||
|
||
To create a new pre-release: | ||
|
||
1. Merge a release PR which updates the `-dev.X` versions in the workspace `Cargo.toml` and updates the `CHANGELOG.md` accordingly | ||
2. Push a release tag to `main` | ||
3. Manually trigger the `Build revive-debian` action | ||
4. Create a __pre-release__ from the tag and manually upload the build artifact generated by the action | ||
5. Update the [contract-docs](https://github.com/paritytech/contract-docs/) accordingly |