Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# Rust
target

# Nix
.direnv
result*
target

# From cargo-mutants
mutants*

# Misc
report*
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,20 @@
<!-- markdownlint-disable no-duplicate-headings -->
<!-- markdownlint-disable no-duplicate-heading -->

# NH Changelog

## Unreleased

### Changed

- Nh checks are now more robust in the sense that unnecessary features will not
be required when the underlying command does not depend on them.

### Fixed

- Nh will now correctly detect non-semver version strings, such as `x.ygit`.
Instead of failing the check, we now try to normalize the string and simply
skip the check with a warning.

## 4.1.1

### Changed
Expand Down
233 changes: 228 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading