Skip to content

Commit 7ee1e1f

Browse files
midasdfclaude
andcommitted
chore: release v1.1.0
Bump version to 1.1.0 covering changes since v1.0.0: - Migrate to Zig 0.16 + zigzag v0.1.5 (#3) - Add CI and Zig security audit workflow (#1) - Add Zig install instructions to README - Add LLM-generated code disclaimer - Update binary size figures and Zig version requirement Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 913078a commit 7ee1e1f

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ A lightweight SSH connection manager with a beautiful TUI, written in Zig.
2828

2929
### Install Zig
3030

31-
sshz requires Zig 0.15.0+. Choose one of the following methods:
31+
sshz requires Zig 0.16.0+. Choose one of the following methods:
3232

3333
**Download from ziglang.org (all platforms):**
3434

@@ -191,13 +191,13 @@ Built with [ZigZag](https://github.com/meszmate/zigzag) TUI framework.
191191

192192
| Metric | Value |
193193
|--------|-------|
194-
| Binary size (x86_64) | ~288 KB |
195-
| Binary size (aarch64) | ~261 KB |
194+
| Binary size (x86_64) | ~381 KB |
195+
| Binary size (aarch64) | ~348 KB |
196196
| Dependencies | Zero (static binary) |
197197

198198
## License
199199

200200
[MIT](LICENSE)
201201

202202
## Disclaimer
203-
This project uses AI-generated code (LLM). I do my best to review and test it, but I can't guarantee it's perfect. Please use it at your own risk.\n
203+
This project uses AI-generated code (LLM). I do my best to review and test it, but I can't guarantee it's perfect. Please use it at your own risk.

build.zig.zon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.{
22
.name = .sshz,
3-
.version = "0.1.0",
3+
.version = "1.1.0",
44
.fingerprint = 0x138d7fea3306d410,
55
.minimum_zig_version = "0.16.0",
66
.paths = .{ "build.zig", "build.zig.zon", "src" },

src/main.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const zz = @import("zigzag");
33
const meta_mod = @import("meta");
44
const app = @import("app");
55

6-
const version = "0.1.0";
6+
const version = "1.1.0";
77

88
pub fn main(init: std.process.Init) !void {
99
const allocator = init.gpa;

0 commit comments

Comments
 (0)