diff --git a/.npm/package.json b/.npm/package.json index 4ca702cd..a6602adc 100644 --- a/.npm/package.json +++ b/.npm/package.json @@ -1,6 +1,6 @@ { "name": "@arkweid/lefthook", - "version": "0.7.6", + "version": "0.7.7", "description": "Simple git hooks manager", "main": "index.js", "bin": { diff --git a/.rubygems/lefthook.gemspec b/.rubygems/lefthook.gemspec index 0e6552e1..5b8bab5e 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.6" + spec.version = "0.7.7" spec.authors = ["A.A.Abroskin"] spec.email = ["arkweid@evilmartians.com"] diff --git a/CHANGELOG.md b/CHANGELOG.md index a7bee44f..ede9be21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ ## master (unreleased) +# 0.7.7 (2021-10-02) + +- Fix incorrect npx command in git hook script template ([PR #236](https://github.com/evilmartians/lefthook/pull/236)) @PikachuEXE +- Update project URLs in NPM package.json ([PR #235](https://github.com/evilmartians/lefthook/pull/235)) @PikachuEXE +- Pass all arguments to downstream hooks ([PR #231](https://github.com/evilmartians/lefthook/pull/231)) @pablobirukov +- Allows lefthook to work when node_modules is not in root folder for npx ([PR #224](https://github.com/evilmartians/lefthook/pull/224)) @spearmootz +- Do not initialize git config on `help` and `version` commands ([PR #209](https://github.com/evilmartians/lefthook/pull/209)) @pwinckles +- node: fix postinstall: process.cwd is a function and should be called @Envek + # 0.7.6 (2021-06-02) - Fix lefthook binary extension on Windows. @aminya diff --git a/cmd/version.go b/cmd/version.go index 709c4805..00d34717 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -7,7 +7,7 @@ import ( ) const ( - version string = "0.7.6" + version string = "0.7.7" ) // versionCmd represents the version command