Skip to content

Commit a6e3221

Browse files
committed
Version 0.0.4
1 parent 1259c9d commit a6e3221

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### 0.0.4
2+
- `.gitignore` files are now correctly parsed on Windows.
3+
- Error reporting in the upgrade process has been improved.
4+
- The automatic builds of `ziglint` on GitHub no longer include a faulty HTTP client.
5+
16
### 0.0.3
27
- Support for the Windows operating system has been improved.
38
- [`exclude`](https://github.com/AnnikaCodes/ziglint#exclude) and [`include`](https://github.com/AnnikaCodes/ziglint#include) rules can now be specified with command-line options.

src/main.zig

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const Version = @import("./semver.zig").Version;
1515
const ZIGLINT_VERSION = Version{
1616
.major = 0,
1717
.minor = 0,
18-
.patch = 3,
18+
.patch = 4,
1919
.prerelease = null,
2020
.build_metadata = @import("comptime_build").GIT_COMMIT_HASH,
2121
};

0 commit comments

Comments
 (0)