From aa12c08307f9f0cf31c1f5a9d70156d0270e9248 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 19 Aug 2026 13:22:07 +0000 Subject: [PATCH] chore(main): release 0.9.1 --- .github/.release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ README.md | 4 ++-- build.zig.zon | 2 +- docs/content/docs/installation.mdx | 4 ++-- 5 files changed, 13 insertions(+), 6 deletions(-) diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index 76d5538..b28fea9 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.9.0" + ".": "0.9.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index dd7cb2e..60c248a 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.9.1](https://github.com/StrobeLabs/eth.zig/compare/v0.9.0...v0.9.1) (2026-08-19) + + +### Bug Fixes + +* record the underlying cause of transport failures for diagnostics ([#115](https://github.com/StrobeLabs/eth.zig/issues/115)) ([508a9eb](https://github.com/StrobeLabs/eth.zig/commit/508a9eb82307a4371047a960269226399508091d)) + ## [0.9.0](https://github.com/StrobeLabs/eth.zig/compare/v0.8.1...v0.9.0) (2026-08-03) diff --git a/README.md b/README.md index 2fde293..b7c745b 100644 --- a/README.md +++ b/README.md @@ -232,7 +232,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.9.0 +zig fetch --save git+https://github.com/StrobeLabs/eth.zig.git#v0.9.1 ``` @@ -242,7 +242,7 @@ zig fetch --save git+https://github.com/StrobeLabs/eth.zig.git#v0.9.0 ```zig .dependencies = .{ .eth = .{ - .url = "git+https://github.com/StrobeLabs/eth.zig.git#v0.9.0", + .url = "git+https://github.com/StrobeLabs/eth.zig.git#v0.9.1", .hash = "...", // run `zig build` and it will tell you the expected hash }, }, diff --git a/build.zig.zon b/build.zig.zon index 0ec9fca..d4eed87 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -1,6 +1,6 @@ .{ .name = .eth_zig, - .version = "0.9.0", // x-release-please-version + .version = "0.9.1", // 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 466fe9c..374e52a 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.9.0 +zig fetch --save git+https://github.com/StrobeLabs/eth.zig.git#v0.9.1 ``` {/* x-release-please-end */} @@ -24,7 +24,7 @@ zig fetch --save git+https://github.com/StrobeLabs/eth.zig.git#v0.9.0 ```zig .dependencies = .{ .eth = .{ - .url = "git+https://github.com/StrobeLabs/eth.zig.git#v0.9.0", + .url = "git+https://github.com/StrobeLabs/eth.zig.git#v0.9.1", .hash = "...", // run `zig build` and it will tell you the expected hash }, },