diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index 02f17d9..2e1c40e 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.8.1" + ".": "0.8.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c0ec94..f84cbeb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to eth.zig will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.8.2](https://github.com/StrobeLabs/eth.zig/compare/v0.8.1...v0.8.2) (2026-07-15) + + +### Performance Improvements + +* route safeDiv through divLimbsDirect (not the builtin u256 /) ([#107](https://github.com/StrobeLabs/eth.zig/issues/107)) ([9da2547](https://github.com/StrobeLabs/eth.zig/commit/9da2547ecb333fd5aa32dbbee05b543f30389067)) + ## [Unreleased] ### Added diff --git a/README.md b/README.md index ee087c9..7906dad 100644 --- a/README.md +++ b/README.md @@ -215,7 +215,7 @@ Built something with eth.zig? Open a PR to add it here. ```bash -zig fetch --save git+https://github.com/StrobeLabs/eth.zig.git#v0.8.1 +zig fetch --save git+https://github.com/StrobeLabs/eth.zig.git#v0.8.2 ``` @@ -225,7 +225,7 @@ zig fetch --save git+https://github.com/StrobeLabs/eth.zig.git#v0.8.1 ```zig .dependencies = .{ .eth = .{ - .url = "git+https://github.com/StrobeLabs/eth.zig.git#v0.8.1", + .url = "git+https://github.com/StrobeLabs/eth.zig.git#v0.8.2", .hash = "...", // run `zig build` and it will tell you the expected hash }, }, diff --git a/build.zig.zon b/build.zig.zon index 76951cc..5137161 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -1,6 +1,6 @@ .{ .name = .eth_zig, - .version = "0.8.1", // x-release-please-version + .version = "0.8.2", // x-release-please-version .fingerprint = 0xd0f21900fa26f179, .minimum_zig_version = "0.16.0", .dependencies = .{}, diff --git a/docs/content/docs/installation.mdx b/docs/content/docs/installation.mdx index b157b39..267577c 100644 --- a/docs/content/docs/installation.mdx +++ b/docs/content/docs/installation.mdx @@ -14,7 +14,7 @@ description: How to add eth.zig to your Zig project. {/* x-release-please-start-version */} ```bash -zig fetch --save git+https://github.com/StrobeLabs/eth.zig.git#v0.8.1 +zig fetch --save git+https://github.com/StrobeLabs/eth.zig.git#v0.8.2 ``` {/* x-release-please-end */} @@ -24,7 +24,7 @@ zig fetch --save git+https://github.com/StrobeLabs/eth.zig.git#v0.8.1 ```zig .dependencies = .{ .eth = .{ - .url = "git+https://github.com/StrobeLabs/eth.zig.git#v0.8.1", + .url = "git+https://github.com/StrobeLabs/eth.zig.git#v0.8.2", .hash = "...", // run `zig build` and it will tell you the expected hash }, },