Skip to content

Commit b075823

Browse files
committed
Version 0.0.3
1 parent b0ea7ce commit b075823

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 0.0.3
2+
- Support for the Windows operating system has been improved.
3+
- [`exclude`](https://github.com/AnnikaCodes/ziglint#exclude) and [`include`](https://github.com/AnnikaCodes/ziglint#include) rules can now be specified with command-line options.
4+
15
### 0.0.2
26
- New [`exclude`](https://github.com/AnnikaCodes/ziglint#exclude) and [`include`](https://github.com/AnnikaCodes/ziglint#include) rules have been implemented!
37
- [`max_line_length`](https://github.com/AnnikaCodes/ziglint#max_line_length) now defaults to a maximum of 100 characters per line.

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 = 2,
18+
.patch = 3,
1919
.prerelease = null,
2020
.build_metadata = @import("comptime_build").GIT_COMMIT_HASH,
2121
};

0 commit comments

Comments
 (0)