Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 31a27f1

Browse files
committed
0.7.5: Fixes for git worktrees, custom hooks path, npm/gem on Windows
1 parent 697e0b1 commit 31a27f1

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.npm/package.json

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

.rubygems/lefthook.gemspec

Lines changed: 1 addition & 1 deletion
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.4"
3+
spec.version = "0.7.5"
44
spec.authors = ["A.A.Abroskin"]
55
spec.email = ["[email protected]"]
66

CHANGELOG.md

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

33
## master (unreleased)
44

5+
# 0.7.5 (2021-05-14)
6+
7+
- [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
8+
- [PR #177](https://github.com/evilmartians/lefthook/pull/177) Support non-default git hooks path. @charlie-wasp
9+
- [PR #182](https://github.com/evilmartians/lefthook/pull/182) Support git workspaces and submodules. @skryukov
10+
- [PR #184](https://github.com/evilmartians/lefthook/pull/184) Rewrite npm's scripts in JavaScript to support running on Windows without `sh`. @aminya
11+
512
# 0.7.4 (2021-04-30)
613

714
- [PR](https://github.com/evilmartians/lefthook/pull/171) Improve check for installed git @DmitryTsepelev

cmd/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
)
88

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

1313
// versionCmd represents the version command

0 commit comments

Comments
 (0)