mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-06-22 20:51:13 +00:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 471e4b7263 | |||
| 079e5c1cc4 | |||
| f3a86588f3 | |||
| 7233738f45 | |||
| 79ec4dd04b |
@@ -6,8 +6,15 @@ This is a development pre-release.
|
|||||||
|
|
||||||
Supported `polkadot-sdk` rev: `274a781e8ca1a9432c7ec87593bd93214abbff50`
|
Supported `polkadot-sdk` rev: `274a781e8ca1a9432c7ec87593bd93214abbff50`
|
||||||
|
|
||||||
|
## v0.1.0-dev.10
|
||||||
|
|
||||||
|
This is a development pre-release.
|
||||||
|
|
||||||
|
Supported `polkadot-sdk` rev: `274a781e8ca1a9432c7ec87593bd93214abbff50`
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
- Support for the `coinbase` opcode.
|
- Support for the `coinbase` opcode.
|
||||||
|
- The resolc web JS version.
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Missing the `--overwrite` flag emits an error instead of a warning.
|
- Missing the `--overwrite` flag emits an error instead of a warning.
|
||||||
|
|||||||
Generated
+755
-627
File diff suppressed because it is too large
Load Diff
+28
-28
@@ -3,7 +3,7 @@ resolver = "2"
|
|||||||
members = ["crates/*"]
|
members = ["crates/*"]
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
version = "0.1.0-dev.9"
|
version = "0.1.0-dev.10"
|
||||||
authors = [
|
authors = [
|
||||||
"Cyrill Leutwiler <cyrill@parity.io>",
|
"Cyrill Leutwiler <cyrill@parity.io>",
|
||||||
"Parity Technologies <admin@parity.io>",
|
"Parity Technologies <admin@parity.io>",
|
||||||
@@ -14,31 +14,31 @@ repository = "https://github.com/paritytech/revive"
|
|||||||
rust-version = "1.81.0"
|
rust-version = "1.81.0"
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
revive-benchmarks = { version = "0.1.0-dev.9", path = "crates/benchmarks" }
|
revive-benchmarks = { version = "0.1.0-dev.10", path = "crates/benchmarks" }
|
||||||
revive-builtins = { version = "0.1.0-dev.9", path = "crates/builtins" }
|
revive-builtins = { version = "0.1.0-dev.10", path = "crates/builtins" }
|
||||||
revive-common = { version = "0.1.0-dev.9", path = "crates/common" }
|
revive-common = { version = "0.1.0-dev.10", path = "crates/common" }
|
||||||
revive-differential = { version = "0.1.0-dev.9", path = "crates/differential" }
|
revive-differential = { version = "0.1.0-dev.10", path = "crates/differential" }
|
||||||
revive-integration = { version = "0.1.0-dev.9", path = "crates/integration" }
|
revive-integration = { version = "0.1.0-dev.10", path = "crates/integration" }
|
||||||
revive-linker = { version = "0.1.0-dev.9", path = "crates/linker" }
|
revive-linker = { version = "0.1.0-dev.10", path = "crates/linker" }
|
||||||
lld-sys = { version = "0.1.0-dev.9", path = "crates/lld-sys" }
|
lld-sys = { version = "0.1.0-dev.10", path = "crates/lld-sys" }
|
||||||
revive-llvm-context = { version = "0.1.0-dev.9", path = "crates/llvm-context" }
|
revive-llvm-context = { version = "0.1.0-dev.10", path = "crates/llvm-context" }
|
||||||
revive-runtime-api = { version = "0.1.0-dev.9", path = "crates/runtime-api" }
|
revive-runtime-api = { version = "0.1.0-dev.10", path = "crates/runtime-api" }
|
||||||
revive-runner = { version = "0.1.0-dev.9", path = "crates/runner" }
|
revive-runner = { version = "0.1.0-dev.10", path = "crates/runner" }
|
||||||
revive-solidity = { version = "0.1.0-dev.9", path = "crates/solidity" }
|
revive-solidity = { version = "0.1.0-dev.10", path = "crates/solidity" }
|
||||||
revive-stdlib = { version = "0.1.0-dev.9", path = "crates/stdlib" }
|
revive-stdlib = { version = "0.1.0-dev.10", path = "crates/stdlib" }
|
||||||
revive-build-utils = { version = "0.1.0-dev.9", path = "crates/build-utils" }
|
revive-build-utils = { version = "0.1.0-dev.10", path = "crates/build-utils" }
|
||||||
|
|
||||||
hex = "0.4.3"
|
hex = "0.4.3"
|
||||||
cc = "1.0"
|
cc = "1.2"
|
||||||
libc = "0.2.169"
|
libc = "0.2.169"
|
||||||
tempfile = "3.8"
|
tempfile = "3.16"
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
semver = { version = "1.0", features = ["serde"] }
|
semver = { version = "1.0", features = ["serde"] }
|
||||||
itertools = "0.14"
|
itertools = "0.14"
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
serde_json = { version = "1.0", features = ["arbitrary_precision"] }
|
serde_json = { version = "1.0", features = ["arbitrary_precision"] }
|
||||||
regex = "1.10"
|
regex = "1.10"
|
||||||
once_cell = "1.19"
|
once_cell = "1.20"
|
||||||
num = "0.4.3"
|
num = "0.4.3"
|
||||||
sha1 = "0.10"
|
sha1 = "0.10"
|
||||||
sha3 = "0.10"
|
sha3 = "0.10"
|
||||||
@@ -47,12 +47,12 @@ which = "7.0"
|
|||||||
path-slash = "0.2"
|
path-slash = "0.2"
|
||||||
rayon = "1.8"
|
rayon = "1.8"
|
||||||
clap = { version = "4", default-features = false, features = ["derive"] }
|
clap = { version = "4", default-features = false, features = ["derive"] }
|
||||||
polkavm-common = "0.19.0"
|
polkavm-common = "0.21.0"
|
||||||
polkavm-linker = "0.19.0"
|
polkavm-linker = "0.21.0"
|
||||||
polkavm-disassembler = "0.19.0"
|
polkavm-disassembler = "0.21.0"
|
||||||
polkavm = "0.19.0"
|
polkavm = "0.21.0"
|
||||||
alloy-primitives = { version = "0.8.19", features = ["serde"] }
|
alloy-primitives = { version = "0.8.21", features = ["serde"] }
|
||||||
alloy-sol-types = "0.8.19"
|
alloy-sol-types = "0.8.21"
|
||||||
alloy-genesis = "0.11.0"
|
alloy-genesis = "0.11.0"
|
||||||
alloy-serde = "0.11.0"
|
alloy-serde = "0.11.0"
|
||||||
env_logger = { version = "0.11.6", default-features = false }
|
env_logger = { version = "0.11.6", default-features = false }
|
||||||
@@ -64,15 +64,15 @@ downloader = "0.2.8"
|
|||||||
flate2 = "1.0.35"
|
flate2 = "1.0.35"
|
||||||
fs_extra = "1.3.0"
|
fs_extra = "1.3.0"
|
||||||
num_cpus = "1"
|
num_cpus = "1"
|
||||||
tar = "0.4.43"
|
tar = "0.4"
|
||||||
toml = "0.8.19"
|
toml = "0.8"
|
||||||
assert_cmd = "2.0.16"
|
assert_cmd = "2.0"
|
||||||
assert_fs = "1.1.2"
|
assert_fs = "1.1"
|
||||||
|
|
||||||
# polkadot-sdk and friends
|
# polkadot-sdk and friends
|
||||||
codec = { version = "3.6.12", default-features = false, package = "parity-scale-codec" }
|
codec = { version = "3.6.12", default-features = false, package = "parity-scale-codec" }
|
||||||
scale-info = { version = "2.11.6", default-features = false }
|
scale-info = { version = "2.11.6", default-features = false }
|
||||||
polkadot-sdk = { git = "https://github.com/paritytech/polkadot-sdk", rev = "274a781e8ca1a9432c7ec87593bd93214abbff50" }
|
polkadot-sdk = { git = "https://github.com/paritytech/polkadot-sdk", branch = "at/disable-validation" }
|
||||||
|
|
||||||
# llvm
|
# llvm
|
||||||
[workspace.dependencies.inkwell]
|
[workspace.dependencies.inkwell]
|
||||||
|
|||||||
+1
-1
@@ -7,5 +7,5 @@ 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
|
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`
|
2. Push a release tag to `main`
|
||||||
3. Create a __pre-release__ from the tag and manually upload the `resolc` binary from docker image
|
3. Create a __pre-release__ from the tag and manually upload the `resolc` binary from docker image
|
||||||
4. Manually upload `resolc.js` and `resolc.wasm` from the `build-revive-wasm` action artifacts.
|
4. Manually upload `resolc.js`, `resolc-web.js` and `resolc.wasm` from the `build-revive-wasm` action artifacts.
|
||||||
5. Update the [contract-docs](https://github.com/paritytech/contract-docs/) accordingly
|
5. Update the [contract-docs](https://github.com/paritytech/contract-docs/) accordingly
|
||||||
|
|||||||
Reference in New Issue
Block a user