Skip to content

Commit 046455d

Browse files
authored
release v0.5.0 (#401)
Signed-off-by: Cyrill Leutwiler <[email protected]>
1 parent 70037e1 commit 046455d

File tree

11 files changed

+34
-21
lines changed

11 files changed

+34
-21
lines changed

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,22 @@ This is a development pre-release.
66

77
Supported `polkadot-sdk` rev: `2509.0.0`
88

9+
## v0.5.0
10+
11+
This is a development pre-release.
12+
13+
Supported `polkadot-sdk` rev: `2509.0.0`
14+
915
### Added
10-
- Support for `selfdestruct`.
16+
- Support for `SELFDESTRUCT`.
1117

1218
### Changed
1319
- Emulated EVM heap memory accesses of zero length are never out of bounds.
20+
- Switched to newer and cheaper storage syscalls (omits reads and writes of `0` values).
1421

1522
### Fixed
16-
- An off-by-one bug cusing incorrect `SDIV` overflow semantics.
23+
- Introduced a workaround avoiding compiler crashes caused by a bug in LLVM affecting `SDIV`.
24+
- An off-by-one bug affecting `SDIV` overflow semantics.
1725

1826
## v0.4.1
1927

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,21 @@ rust-version = "1.85.0"
1515

1616
[workspace.dependencies]
1717
lld-sys = { version = "0.1.0", path = "crates/lld-sys" }
18-
resolc = { version = "0.4.0", path = "crates/resolc", default-features = false }
18+
resolc = { version = "0.5.0", path = "crates/resolc", default-features = false }
1919
revive-benchmarks = { version = "0.1.0", path = "crates/benchmarks" }
2020
revive-build-utils = { version = "0.2.0", path = "crates/build-utils" }
2121
revive-builtins = { version = "0.1.0", path = "crates/builtins" }
2222
revive-common = { version = "0.2.1", path = "crates/common" }
2323
revive-differential = { version = "0.2.0", path = "crates/differential" }
2424
revive-explorer = { version = "0.1.0", path = "crates/explore" }
25-
revive-integration = { version = "0.2.0", path = "crates/integration" }
25+
revive-integration = { version = "0.3.0", path = "crates/integration" }
2626
revive-linker = { version = "0.2.0", path = "crates/linker" }
2727
revive-llvm-context = { version = "0.5.0", path = "crates/llvm-context" }
28-
revive-runner = { version = "0.2.0", path = "crates/runner" }
29-
revive-runtime-api = { version = "0.3.0", path = "crates/runtime-api" }
28+
revive-runner = { version = "0.3.0", path = "crates/runner" }
29+
revive-runtime-api = { version = "0.4.0", path = "crates/runtime-api" }
3030
revive-solc-json-interface = { version = "0.4.0", path = "crates/solc-json-interface", default-features = false }
3131
revive-stdlib = { version = "0.2.0", path = "crates/stdlib" }
32-
revive-yul = { version = "0.3.1", path = "crates/yul" }
32+
revive-yul = { version = "0.4.0", path = "crates/yul" }
3333

3434
hex = "0.4.3"
3535
cc = "1.2"

crates/integration/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "revive-integration"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
license.workspace = true
55
edition.workspace = true
66
repository.workspace = true

crates/llvm-builder/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = [
66
"Anton Baliasnikov <[email protected]>",
77
"Cyrill Leutwiler <[email protected]>",
88
]
9-
version = "0.3.0"
9+
version = "0.4.0"
1010
license.workspace = true
1111
edition.workspace = true
1212
repository.workspace = true

crates/resolc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "resolc"
3-
version = "0.4.1"
3+
version = "0.5.0"
44
license.workspace = true
55
edition.workspace = true
66
repository.workspace = true

crates/runner/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "revive-runner"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
license.workspace = true
55
edition.workspace = true
66
repository.workspace = true

crates/runtime-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "revive-runtime-api"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
license.workspace = true
55
edition.workspace = true
66
repository.workspace = true

crates/yul/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "revive-yul"
33
description = "The revive YUL parser library."
4-
version = "0.3.1"
4+
version = "0.4.0"
55
authors.workspace = true
66
license.workspace = true
77
edition.workspace = true

js/resolc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@parity/resolc",
33
"license": "Apache-2.0",
4-
"version": "0.4.1",
4+
"version": "0.5.0",
55
"author": "Parity <[email protected]> (https://parity.io)",
66
"module": "index.ts",
77
"types": "./dist/index.d.ts",

0 commit comments

Comments
 (0)