Skip to content

Commit 83ec3a9

Browse files
committed
2.1.4: bring back {lefthook_job_name}
1 parent 8dcd4ae commit 83ec3a9

File tree

23 files changed

+43
-33
lines changed

23 files changed

+43
-33
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change log
22

3+
## 2.1.4 (2026-03-12)
4+
5+
- pkg: fix scripts ([#1348](https://github.com/evilmartians/lefthook/pull/1348)) by [@mrexox](https://github.com/mrexox)
6+
- fix: bring back {lefthook_job_name} template ([#1347](https://github.com/evilmartians/lefthook/pull/1347)) by [@mrexox](https://github.com/mrexox)
7+
- pkg: refactor packaging (2) ([#1346](https://github.com/evilmartians/lefthook/pull/1346)) by [@mrexox](https://github.com/mrexox)
8+
- fix: separate more commands' non-option args with -- ([#1339](https://github.com/evilmartians/lefthook/pull/1339)) by [@scop](https://github.com/scop)
9+
- docs: change logo to point to landing page instead of itself ([#1343](https://github.com/evilmartians/lefthook/pull/1343)) by [@igas](https://github.com/igas)
10+
- pkg: make it easier to read ([#1340](https://github.com/evilmartians/lefthook/pull/1340)) by [@mrexox](https://github.com/mrexox)
11+
- pkg: refactor packaging scripts ([#1308](https://github.com/evilmartians/lefthook/pull/1308)) by [@mrexox](https://github.com/mrexox)
12+
313
## 2.1.3 (2026-03-07)
414

515
- chore: switch artifact attestations gen to actions/attest v4 ([#1338](https://github.com/evilmartians/lefthook/pull/1338)) by [@scop](https://github.com/scop)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ A Git hooks manager for Node.js, Ruby, Python and many other types of projects.
2222
With **Go** (>= 1.26):
2323

2424
```bash
25-
go install github.com/evilmartians/lefthook/v2@v2.1.3
25+
go install github.com/evilmartians/lefthook/v2@v2.1.4
2626
```
2727

2828
* or as a go tool
2929

3030
```bash
31-
go get -tool github.com/evilmartians/lefthook/v2@v2.1.3
31+
go get -tool github.com/evilmartians/lefthook/v2@v2.1.4
3232
```
3333

3434
With **NPM**:

docs/installation/go.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The minimum Go version required is 1.26 and you can install
55
- as global package
66

77
```bash
8-
go install github.com/evilmartians/lefthook/v2@v2.1.3
8+
go install github.com/evilmartians/lefthook/v2@v2.1.4
99
```
1010

1111
- or as a go tool in your project

docs/installation/swift.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ You can find the Swift wrapper plugin [here](https://github.com/csjones/lefthook
55
Utilize lefthook in your Swift project using Swift Package Manager:
66

77
```swift
8-
.package(url: "https://github.com/csjones/lefthook-plugin.git", exact: "2.1.3"),
8+
.package(url: "https://github.com/csjones/lefthook-plugin.git", exact: "2.1.4"),
99
```
1010

1111
Or, with [mint](https://github.com/yonaskolb/Mint):

internal/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"golang.org/x/mod/semver"
77
)
88

9-
const version = "2.1.3"
9+
const version = "2.1.4"
1010

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

packaging/registries/aur/lefthook-bin/PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
pkgname=lefthook-bin
44
pkgdesc="Git hooks manager"
5-
pkgver=2.1.3
5+
pkgver=2.1.4
66
pkgrel=1
77
arch=('x86_64' 'aarch64')
88
url="https://github.com/evilmartians/lefthook"

packaging/registries/aur/lefthook/PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
pkgname=lefthook
44
pkgdesc="Git hooks manager"
5-
pkgver=2.1.3
5+
pkgver=2.1.4
66
pkgrel=1
77
arch=('x86_64' 'aarch64')
88
url="https://github.com/evilmartians/lefthook"

packaging/registries/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": "2.1.3",
3+
"version": "2.1.4",
44
"description": "Simple git hooks manager",
55
"main": "bin/index.js",
66
"files": [

packaging/registries/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": "2.1.3",
3+
"version": "2.1.4",
44
"description": "Simple git hooks manager",
55
"main": "bin/index.js",
66
"files": [

packaging/registries/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": "2.1.3",
3+
"version": "2.1.4",
44
"description": "The macOS ARM 64-bit binary for lefthook, git hooks manager.",
55
"preferUnplugged": false,
66
"repository": {

0 commit comments

Comments
 (0)