We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ede4de commit e9f60d0Copy full SHA for e9f60d0
3 files changed
CHANGELOG-v2.md
@@ -1,5 +1,9 @@
1
# Release Notes for Cmus Control v2.x
2
3
+## 2.1.2
4
+
5
+- Use Zig 0.15.2.
6
7
## 2.1.1
8
9
- Use Zig 0.15.1.
build.zig
@@ -7,7 +7,7 @@ pub fn build(b: *std.Build) void {
const version: std.SemanticVersion = .{
.major = 2,
.minor = 1,
10
- .patch = 1,
+ .patch = 2,
11
};
12
const target = b.standardTargetOptions(.{});
13
const optimize = b.standardOptimizeOption(.{
src/main.zig
@@ -1,4 +1,4 @@
-const VERSION = "2.1.1";
+const VERSION = "2.1.2";
const std = @import("std");
const File = std.fs.File;
const Writer = std.Io.Writer;
0 commit comments