Skip to content

Commit 0a2f0f1

Browse files
committed
Version 0.0.2
1 parent d4c78ad commit 0a2f0f1

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
### 0.0.2
2+
- New [`exclude`](https://github.com/AnnikaCodes/ziglint#exclude) and [`include`](https://github.com/AnnikaCodes/ziglint#include) have been implemented!
3+
- [`max_line_length`](https://github.com/AnnikaCodes/ziglint#max_line_length) now defaults to a maximum of 100 characters per line.
4+
- Command-line argument parsing was rewritten.
5+
- Zig's `std.log` is no longer used for logging, fixing issues where information about upgrades wouldn't be printed properly.
6+
- A bug in how [`max_line_length`](https://github.com/AnnikaCodes/ziglint#max_line_length) counts line lengths has been fixed. Newlines are no longer included in line length, and non-ASCII Unicode characters are no longer double-counted.
7+
18
### 0.0.1
29
This is the first version of `ziglint`.
310
It's not too useful, but it supports two rules (`check_format` and `max_line_length`) and it can upgrade itself and follow directives from a `.gitignore`.

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

0 commit comments

Comments
 (0)