Skip to content

Commit d8d9d27

Browse files
committed
release: v0.7.1
1 parent 3a659e4 commit d8d9d27

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,18 @@
22

33
This file documents all changes made to the project and is updated before each release.
44

5+
## v0.7.1 [2025-09-26]
6+
### Fixed
7+
- `update-self` now works on all systems
8+
9+
### Dependencies
10+
- Upgrade to zip.zig v0.3.2
11+
512
## v0.7.0 [2025-09-24]
613
### Changed
714
- Requires Zig master to build correctly
15+
16+
### Dependencies
817
- Upgrade to zip.zig v0.3.1
918

1019
## v0.6.2 [2025-02-04]

build.zig.zon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.{
22
.name = .zigverm,
3-
.version = "0.7.0",
3+
.version = "0.7.1",
44
.dependencies = .{
55
.zip = .{
66
.url = "https://github.com/AMythicDev/zip.zig/archive/refs/tags/v0.3.2.tar.gz",

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
with import nixpkgs { inherit system; };
1010
stdenv.mkDerivation(finalAttrs: {
1111
name = "zigverm";
12-
version = "0.7.0";
12+
version = "0.7.1";
1313

1414
src = fetchFromGitHub {
1515
owner = "AMythicDev";

scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -e
44

5-
VERSION="0.7.0"
5+
VERSION="0.7.1"
66

77
if [[ -z $ZIGVERM_ROOT_DIR ]]; then
88
ZIGVERM_ROOT_DIR=$HOME/.zigverm

src/main.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const CommonPaths = paths.CommonPaths;
1616
const Release = common.Release;
1717
const install = @import("install.zig");
1818

19-
pub const Version = "0.7.0";
19+
pub const Version = "0.7.1";
2020

2121
pub fn main() !void {
2222
var aa = std.heap.ArenaAllocator.init(std.heap.page_allocator);

0 commit comments

Comments
 (0)