Skip to content

Commit c88a009

Browse files
committed
1.2.7: Execution fixes
Signed-off-by: Valentin Kiselev <[email protected]>
1 parent 82f8a08 commit c88a009

File tree

15 files changed

+31
-22
lines changed

15 files changed

+31
-22
lines changed

CHANGELOG.md

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

33
## master (unreleased)
44

5+
## 1.2.7 (2023-01-10)
6+
7+
- fix: Make info dir when it is absent ([#414](https://github.com/evilmartians/lefthook/pull/414)) by @sato11
8+
- deps: bump github.com/mattn/go-isatty from 0.0.16 to 0.0.17 ([#409](https://github.com/evilmartians/lefthook/pull/409)) by @dependabot
9+
- deps: bump github.com/briandowns/spinner from 1.19.0 to 1.20.0 ([#406](https://github.com/evilmartians/lefthook/pull/406)) by @dependabot
10+
- fix: Double quote eval statements with $dir ([#404](https://github.com/evilmartians/lefthook/pull/404)) by @jrfoell
11+
- chore: Add PR template ([#401](https://github.com/evilmartians/lefthook/pull/401)) by @mrexox
12+
- chore: Fix yml syntax missing colon ([#399](https://github.com/evilmartians/lefthook/pull/399)) by @aaronkelton
13+
514
## 1.2.6 (2022-12-14)
615

716
- feature: Allow following output ([#397](https://github.com/evilmartians/lefthook/pull/397)) by @mrexox

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.2.6"
9+
const version = "1.2.7"
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.2.6
2+
VERSION := 1.2.7
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.2.6",
3+
"version": "1.2.7",
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.2.6",
3+
"version": "1.2.7",
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.2.6",
3+
"version": "1.2.7",
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.2.6",
3+
"version": "1.2.7",
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.2.6",
3+
"version": "1.2.7",
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.2.6",
3+
"version": "1.2.7",
44
"description": "The FreeBSD 64-bit binary for lefthook, git hooks manager.",
55
"preferUnplugged": false,
66
"repository": "https://github.com/evilmartians/lefthook",

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.2.6",
3+
"version": "1.2.7",
44
"description": "The Linux ARM 64-bit binary for lefthook, git hooks manager.",
55
"preferUnplugged": false,
66
"repository": "https://github.com/evilmartians/lefthook",

0 commit comments

Comments
 (0)