Skip to content

Commit 35d3cbd

Browse files
committed
release v0.6.0
1 parent e3126f4 commit 35d3cbd

File tree

5 files changed

+18
-4
lines changed

5 files changed

+18
-4
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

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

5+
## v0.6.0 [2025-01-25]
6+
### Added
7+
- The LICENSE and README file will now be included with each release.
8+
- Override the zig version for a specific command by writing `zig @<version> ...`
9+
- Use `multiprocessing` module in `z.py` to build parallel releases
10+
11+
### Changed
12+
- `zigverm override-rm` requires the directory path to be explicit given.
13+
- `zigverm override`/`zigverm override-rm` can now take relative directory paths.
14+
- Overhaul the download progress bar
15+
16+
### Fixed
17+
- Tests not being run from `common/tests.zig` file
18+
- `master` versions not being updated to `to_update` being set to false;
19+
520
## v0.5.1 [2024-11-29]
621

722
### Fixed

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.5.1",
3+
.version = "0.6.0",
44
.minimum_zig_version = "0.11.0",
55

66
.dependencies = .{

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.5.1"
5+
VERSION="0.6.0"
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.5.1";
19+
pub const Version = "0.6.0";
2020

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

z.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ def make_target_release(target: str, version: str):
6464
def eprint(text: str):
6565
print(f"\x1b[33m{text}", file=sys.stderr)
6666

67-
6867
def main():
6968
args = sys.argv
7069

0 commit comments

Comments
 (0)