Skip to content
Merged
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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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).

## [Unreleased]
## [0.5.0] - 2026-06-10

### Changed
- Minimum supported Zig version is now 0.16.0. Transports (HTTP, WebSocket, SSE), retry backoff, and receipt polling were migrated to the new `std.Io` interface; the library constructs a default blocking `std.Io` internally, so public signatures are unchanged. This is a breaking change for Zig 0.15 users
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,15 +213,15 @@ Built something with eth.zig? Open a PR to add it here.
**One-liner:**

```bash
zig fetch --save git+https://github.com/StrobeLabs/eth.zig.git#v0.4.0
zig fetch --save git+https://github.com/StrobeLabs/eth.zig.git#v0.5.0
```

**Or add manually** to your `build.zig.zon`:

```zig
.dependencies = .{
.eth = .{
.url = "git+https://github.com/StrobeLabs/eth.zig.git#v0.4.0",
.url = "git+https://github.com/StrobeLabs/eth.zig.git#v0.5.0",
.hash = "...", // run `zig build` and it will tell you the expected hash
},
},
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

| Version | Supported |
|---------|-----------|
| 0.4.x | Yes |
| < 0.4 | No |
| 0.5.x | Yes |
| < 0.5 | No |

## Reporting a Vulnerability

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.4.0",
.version = "0.5.0",
.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 @@ -13,15 +13,15 @@ description: How to add eth.zig to your Zig project.
**One-liner:**

```bash
zig fetch --save git+https://github.com/StrobeLabs/eth.zig.git#v0.4.0
zig fetch --save git+https://github.com/StrobeLabs/eth.zig.git#v0.5.0
```

**Or add manually** to your `build.zig.zon`:

```zig
.dependencies = .{
.eth = .{
.url = "git+https://github.com/StrobeLabs/eth.zig.git#v0.4.0",
.url = "git+https://github.com/StrobeLabs/eth.zig.git#v0.5.0",
.hash = "...", // run `zig build` and it will tell you the expected hash
},
},
Expand Down
Loading