Skip to content

Commit e9f60d0

Browse files
committed
Version 2.1.2
1 parent 0ede4de commit e9f60d0

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

CHANGELOG-v2.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release Notes for Cmus Control v2.x
22

3+
## 2.1.2
4+
5+
- Use Zig 0.15.2.
6+
37
## 2.1.1
48

59
- Use Zig 0.15.1.

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pub fn build(b: *std.Build) void {
77
const version: std.SemanticVersion = .{
88
.major = 2,
99
.minor = 1,
10-
.patch = 1,
10+
.patch = 2,
1111
};
1212
const target = b.standardTargetOptions(.{});
1313
const optimize = b.standardOptimizeOption(.{

src/main.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const VERSION = "2.1.1";
1+
const VERSION = "2.1.2";
22
const std = @import("std");
33
const File = std.fs.File;
44
const Writer = std.Io.Writer;

0 commit comments

Comments
 (0)