Skip to content

Commit df55fd9

Browse files
committed
Merge branch '0-7-stable'
* 0-7-stable: 0.7.6: Fixes for Windows, NPM on 32bit Node, and NPM in worktrees Remove rpm from recommendations for DEB and RPM packages npm: Use correct arch identifier for 32-bit Intel-based processors Fix lefthook binary extension on Windows Fix path for searching npm-installed binary when in worktree (#193)
2 parents 89ca529 + 5c36d35 commit df55fd9

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

.goreleaser.yml

-2
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,3 @@ nfpms:
6161
- rpm
6262
dependencies:
6363
- git
64-
recommends:
65-
- rpm

.npm/package.json

+2-2
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": {
@@ -26,7 +26,7 @@
2626
"cpu": [
2727
"x64",
2828
"arm64",
29-
"x32"
29+
"ia32"
3030
],
3131
"scripts": {
3232
"postinstall": "node postinstall.js"

.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)