We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ab5e56 commit 00884a5Copy full SHA for 00884a5
CHANGELOG.md
@@ -1,3 +1,6 @@
1
+### 0.0.5
2
+- `ziglint` no longer gets stuck in an infinite loop while attempting to lint certain symlink configurations on Windows.
3
+
4
### 0.0.4
5
- `.gitignore` files are now correctly parsed on Windows.
6
- Error reporting in the upgrade process has been improved.
src/main.zig
@@ -15,7 +15,7 @@ const Version = @import("./semver.zig").Version;
15
const ZIGLINT_VERSION = Version{
16
.major = 0,
17
.minor = 0,
18
- .patch = 4,
+ .patch = 5,
19
.prerelease = null,
20
.build_metadata = @import("comptime_build").GIT_COMMIT_HASH,
21
};
0 commit comments