Skip to content

Commit 18e619a

Browse files
committed
1.7.14: fix for OpenBSD NPM package
1 parent a9ee42d commit 18e619a

File tree

18 files changed

+31
-25
lines changed

18 files changed

+31
-25
lines changed

CHANGELOG.md

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

33
## master (unreleased)
44

5+
## 1.7.14 (2024-08-17)
6+
7+
Fix lefthook NPM package to include OpenBSD package as optional dependency.
8+
59
## 1.7.13 (2024-08-16)
610

711
- feat: support openbsd ([#808](https://github.com/evilmartians/lefthook/pull/808)) by @mrexox

docs/install.md

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

8383
```swift
84-
.package(url: "https://github.com/csjones/lefthook-plugin.git", exact: "1.7.13"),
84+
.package(url: "https://github.com/csjones/lefthook-plugin.git", exact: "1.7.14"),
8585
```
8686

8787
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
@@ -8,7 +8,7 @@ import (
88
"strconv"
99
)
1010

11-
const version = "1.7.13"
11+
const version = "1.7.14"
1212

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

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.7.13",
3+
"version": "1.7.14",
44
"description": "Simple git hooks manager",
55
"main": "bin/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.7.13",
3+
"version": "1.7.14",
44
"description": "Simple git hooks manager",
55
"main": "bin/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.7.13",
3+
"version": "1.7.14",
44
"description": "The macOS ARM 64-bit binary for lefthook, git hooks manager.",
55
"preferUnplugged": false,
66
"repository": {

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

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.7.13",
3+
"version": "1.7.14",
44
"description": "The FreeBSD ARM 64-bit binary for lefthook, git hooks manager.",
55
"preferUnplugged": false,
66
"repository": {

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.7.13",
3+
"version": "1.7.14",
44
"description": "The FreeBSD 64-bit binary for lefthook, git hooks manager.",
55
"preferUnplugged": false,
66
"repository": {

packaging/npm/lefthook-linux-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-linux-arm64",
3-
"version": "1.7.13",
3+
"version": "1.7.14",
44
"description": "The Linux ARM 64-bit binary for lefthook, git hooks manager.",
55
"preferUnplugged": false,
66
"repository": {

0 commit comments

Comments
 (0)