Skip to content

Commit

Permalink
Version 0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
AnnikaCodes committed Jul 29, 2023
1 parent 4ce7708 commit 4a64850
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
### 0.0.7
**BREAKING CHANGE!**
`ziglint` now supports specifying the severity of faults that a rule produces.
The `ziglint.json` format has been changed to accomodate this.

Other changes include:
- A `banned_comment_phrases` rule allowing the linter to fault certain phrases in comments.
- A `file_as_struct` rule enforcing the file capitalization convention for files with top-level fields.
- A `dupe_import` rule checking for when a file is needlessly imported multiple times.
- The unfinished const pointer enforcement rule has been removed for now.

### 0.0.6
- `ziglint` now utilizes exit codes.
- Logging verbosity has been decreased.
Expand Down
2 changes: 1 addition & 1 deletion src/main.zig
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const Version = @import("./semver.zig").Version;
const ZIGLINT_VERSION = Version{
.major = 0,
.minor = 0,
.patch = 6,
.patch = 7,
.prerelease = null,
.build_metadata = @import("comptime_build").GIT_COMMIT_HASH,
};
Expand Down

0 comments on commit 4a64850

Please sign in to comment.