Skip to content

Commit 5c36d35

Browse files
committed
0.7.6: Fixes for Windows, NPM on 32bit Node, and NPM in worktrees
1 parent f52e079 commit 5c36d35

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.npm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arkweid/lefthook",
3-
"version": "0.7.5",
3+
"version": "0.7.6",
44
"description": "Simple git hooks manager",
55
"main": "index.js",
66
"bin": {

.rubygems/lefthook.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |spec|
22
spec.name = "lefthook"
3-
spec.version = "0.7.5"
3+
spec.version = "0.7.6"
44
spec.authors = ["A.A.Abroskin"]
55
spec.email = ["[email protected]"]
66

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## master (unreleased)
44

5+
# 0.7.6 (2021-06-02)
6+
7+
- Fix lefthook binary extension on Windows. @aminya
8+
- [PR #193](https://github.com/evilmartians/lefthook/pull/193) Fix path for searching npm-installed binary when in worktree. @Envek
9+
- NPM, RPM, and DEB packaging fixes. @Envek
10+
511
# 0.7.5 (2021-05-14)
612

713
- [PR #179](https://github.com/evilmartians/lefthook/pull/179) Fix running on Windows under MSYS and MINGW64 when run from Ruby gem or JS npm package. @akiver, @Envek

cmd/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
)
88

99
const (
10-
version string = "0.7.5"
10+
version string = "0.7.6"
1111
)
1212

1313
// versionCmd represents the version command

0 commit comments

Comments
 (0)