Skip to content

Commit 4a64850

Browse files
committed
Version 0.0.7
1 parent 4ce7708 commit 4a64850

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
### 0.0.7
2+
**BREAKING CHANGE!**
3+
`ziglint` now supports specifying the severity of faults that a rule produces.
4+
The `ziglint.json` format has been changed to accomodate this.
5+
6+
Other changes include:
7+
- A `banned_comment_phrases` rule allowing the linter to fault certain phrases in comments.
8+
- A `file_as_struct` rule enforcing the file capitalization convention for files with top-level fields.
9+
- A `dupe_import` rule checking for when a file is needlessly imported multiple times.
10+
- The unfinished const pointer enforcement rule has been removed for now.
11+
112
### 0.0.6
213
- `ziglint` now utilizes exit codes.
314
- Logging verbosity has been decreased.

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

0 commit comments

Comments
 (0)