amont 1.6.4 → 1.6.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -9,7 +9,7 @@
9
9
  A single Rust binary that checks `git commit` and `git push` — no YAML to
10
10
  write, no runtime to install, nothing to configure before it is useful.
11
11
 
12
- - **Useful in the first minute.** Twenty-one built-in checks — commit-message
12
+ - **Useful in the first minute.** Twenty-four built-in checks — commit-message
13
13
  conventions, merge-conflict markers, the linters and formatters for the
14
14
  languages your repository actually uses, branch rules, your test suite —
15
15
  and each one fires only where the repository has opted into its tool.
@@ -136,7 +136,7 @@ pre-push
136
136
  ● runs here ○ inert ⊘ skipped via hook.skip ✗ declaration unusable
137
137
  ```
138
138
 
139
- Twenty-one built-in checks across five git hooks, plus any your repository declares
139
+ Twenty-four built-in checks across five git hooks, plus any your repository declares
140
140
  itself. The full list, with what each one needs before it fires, is in
141
141
  [the checks reference](docs/checks.md).
142
142
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "amont",
3
- "version": "1.6.4",
3
+ "version": "1.6.6",
4
4
  "description": "Opinionated git hooks that judge what you are committing, not what is on disk",
5
5
  "keywords": [
6
6
  "git",
@@ -31,11 +31,11 @@
31
31
  "node": ">=18"
32
32
  },
33
33
  "optionalDependencies": {
34
- "amont-darwin-arm64": "1.6.4",
35
- "amont-darwin-x64": "1.6.4",
36
- "amont-linux-arm64-gnu": "1.6.4",
37
- "amont-linux-x64-gnu": "1.6.4",
38
- "amont-linux-x64-musl": "1.6.4",
39
- "amont-win32-x64": "1.6.4"
34
+ "amont-darwin-arm64": "1.6.6",
35
+ "amont-darwin-x64": "1.6.6",
36
+ "amont-linux-arm64-gnu": "1.6.6",
37
+ "amont-linux-x64-gnu": "1.6.6",
38
+ "amont-linux-x64-musl": "1.6.6",
39
+ "amont-win32-x64": "1.6.6"
40
40
  }
41
41
  }