Skip to content

Commit df82fd9

Browse files
committed
1.6.10: add file_types option filter to commands
1 parent 9f40122 commit df82fd9

File tree

16 files changed

+28
-23
lines changed

16 files changed

+28
-23
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## master (unreleased)
44

5+
## 1.6.10 (2024-04-10)
6+
7+
- feat: add file type filters ([#698](https://github.com/evilmartians/lefthook/pull/698)) by @mrexox
8+
- ci: update github actions versions ([#699](https://github.com/evilmartians/lefthook/pull/699)) by @mrexox
9+
510
## 1.6.9 (2024-04-09)
611

712
- fix: enable interactive inputs for windows ([#696](https://github.com/evilmartians/lefthook/pull/696)) by @mrexox

docs/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ python3 -m pip install --user lefthook
7676
You can find the Swift wrapper plugin [here](https://github.com/csjones/lefthook-plugin). To utilize lefthook, include the plugin in the dependencies section of your `Package.swift`:
7777

7878
```swift
79-
.package(url: "https://github.com/csjones/lefthook-plugin.git", exact: "1.6.9"),
79+
.package(url: "https://github.com/csjones/lefthook-plugin.git", exact: "1.6.10"),
8080
```
8181

8282
## <a id="scoop"></a> Scoop for Windowss

internal/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"strconv"
77
)
88

9-
const version = "1.6.9"
9+
const version = "1.6.10"
1010

1111
var (
1212
// Is set via -X github.com/evilmartians/lefthook/internal/version.commit={commit}.

packaging/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Packages version to release
2-
VERSION := 1.6.9
2+
VERSION := 1.6.10
33

44
DIST_DIR := ../dist
55

packaging/npm-bundled/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@evilmartians/lefthook",
3-
"version": "1.6.9",
3+
"version": "1.6.10",
44
"description": "Simple git hooks manager",
55
"main": "index.js",
66
"bin": {

packaging/npm-installer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@evilmartians/lefthook-installer",
3-
"version": "1.6.9",
3+
"version": "1.6.10",
44
"description": "Simple git hooks manager",
55
"main": "index.js",
66
"bin": {

packaging/npm/lefthook-darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lefthook-darwin-arm64",
3-
"version": "1.6.9",
3+
"version": "1.6.10",
44
"description": "The macOS ARM 64-bit binary for lefthook, git hooks manager.",
55
"preferUnplugged": false,
66
"repository": "https://github.com/evilmartians/lefthook",

packaging/npm/lefthook-darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lefthook-darwin-x64",
3-
"version": "1.6.9",
3+
"version": "1.6.10",
44
"description": "The macOS 64-bit binary for lefthook, git hooks manager.",
55
"preferUnplugged": false,
66
"repository": "https://github.com/evilmartians/lefthook",

packaging/npm/lefthook-freebsd-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lefthook-freebsd-arm64",
3-
"version": "1.6.9",
3+
"version": "1.6.10",
44
"description": "The FreeBSD ARM 64-bit binary for lefthook, git hooks manager.",
55
"preferUnplugged": false,
66
"repository": "https://github.com/evilmartians/lefthook",

packaging/npm/lefthook-freebsd-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lefthook-freebsd-x64",
3-
"version": "1.6.9",
3+
"version": "1.6.10",
44
"description": "The FreeBSD 64-bit binary for lefthook, git hooks manager.",
55
"preferUnplugged": false,
66
"repository": "https://github.com/evilmartians/lefthook",

0 commit comments

Comments
 (0)