Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/.release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.8.1"
".": "0.8.2"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ Built something with eth.zig? Open a PR to add it here.

<!-- 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 -->

Expand All @@ -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
},
},
Expand Down
2 changes: 1 addition & 1 deletion build.zig.zon
Original file line number Diff line number Diff line change
@@ -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 = .{},
Expand Down
4 changes: 2 additions & 2 deletions docs/content/docs/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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 */}

Expand All @@ -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
},
},
Expand Down