diff --git a/.npm/package.json b/.npm/package.json index 49d816f4..00b32f63 100644 --- a/.npm/package.json +++ b/.npm/package.json @@ -1,6 +1,6 @@ { "name": "@arkweid/lefthook", - "version": "0.7.5", + "version": "0.7.6", "description": "Simple git hooks manager", "main": "index.js", "bin": { diff --git a/.rubygems/lefthook.gemspec b/.rubygems/lefthook.gemspec index 15417ce7..0e6552e1 100644 --- a/.rubygems/lefthook.gemspec +++ b/.rubygems/lefthook.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |spec| spec.name = "lefthook" - spec.version = "0.7.5" + spec.version = "0.7.6" spec.authors = ["A.A.Abroskin"] spec.email = ["arkweid@evilmartians.com"] diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f915980..a7bee44f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## master (unreleased) +# 0.7.6 (2021-06-02) + +- Fix lefthook binary extension on Windows. @aminya +- [PR #193](https://github.com/evilmartians/lefthook/pull/193) Fix path for searching npm-installed binary when in worktree. @Envek +- NPM, RPM, and DEB packaging fixes. @Envek + # 0.7.5 (2021-05-14) - [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 diff --git a/cmd/version.go b/cmd/version.go index a4d1399c..709c4805 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -7,7 +7,7 @@ import ( ) const ( - version string = "0.7.5" + version string = "0.7.6" ) // versionCmd represents the version command