diff --git a/CHANGELOG.md b/CHANGELOG.md index 30350477..619e40da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## master (unreleased) +## 1.7.3 (2024-07-18) + +- feat: allow list of files in exclude option ([#772](https://github.com/evilmartians/lefthook/pull/772)) by @mrexox +- docs: add docs for LEFTHOOK_OUTPUT var ([#771](https://github.com/evilmartians/lefthook/pull/771)) by @manbearwiz +- fix: use direct lefthook package ([#774](https://github.com/evilmartians/lefthook/pull/774)) by @mrexox + ## 1.7.2 (2024-07-11) - fix: add missing sub directory in hook template ([#768](https://github.com/evilmartians/lefthook/pull/768)) by @nikeee diff --git a/docs/install.md b/docs/install.md index 68c01b3c..287ae986 100644 --- a/docs/install.md +++ b/docs/install.md @@ -81,7 +81,7 @@ You can find the Swift wrapper plugin [here](https://github.com/csjones/lefthook Utilize lefthook in your Swift project using Swift Package Manager: ```swift -.package(url: "https://github.com/csjones/lefthook-plugin.git", exact: "1.7.2"), +.package(url: "https://github.com/csjones/lefthook-plugin.git", exact: "1.7.3"), ``` Or, with [mint](https://github.com/yonaskolb/Mint): diff --git a/internal/version/version.go b/internal/version/version.go index dbfeb1fb..5e702ec4 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -8,7 +8,7 @@ import ( "strconv" ) -const version = "1.7.2" +const version = "1.7.3" var ( // Is set via -X github.com/evilmartians/lefthook/internal/version.commit={commit}. diff --git a/packaging/npm-bundled/package.json b/packaging/npm-bundled/package.json index 51aac3c5..2b6b0671 100644 --- a/packaging/npm-bundled/package.json +++ b/packaging/npm-bundled/package.json @@ -1,6 +1,6 @@ { "name": "@evilmartians/lefthook", - "version": "1.7.2", + "version": "1.7.3", "description": "Simple git hooks manager", "main": "bin/index.js", "bin": { diff --git a/packaging/npm-installer/package.json b/packaging/npm-installer/package.json index 5801720c..a73d83d3 100644 --- a/packaging/npm-installer/package.json +++ b/packaging/npm-installer/package.json @@ -1,6 +1,6 @@ { "name": "@evilmartians/lefthook-installer", - "version": "1.7.2", + "version": "1.7.3", "description": "Simple git hooks manager", "main": "bin/index.js", "bin": { diff --git a/packaging/npm/lefthook-darwin-arm64/package.json b/packaging/npm/lefthook-darwin-arm64/package.json index 68c5eb32..6f7e68cf 100644 --- a/packaging/npm/lefthook-darwin-arm64/package.json +++ b/packaging/npm/lefthook-darwin-arm64/package.json @@ -1,6 +1,6 @@ { "name": "lefthook-darwin-arm64", - "version": "1.7.2", + "version": "1.7.3", "description": "The macOS ARM 64-bit binary for lefthook, git hooks manager.", "bin": { "lefthook": "bin/lefthook" diff --git a/packaging/npm/lefthook-darwin-x64/package.json b/packaging/npm/lefthook-darwin-x64/package.json index e7d47ca5..10ea2616 100644 --- a/packaging/npm/lefthook-darwin-x64/package.json +++ b/packaging/npm/lefthook-darwin-x64/package.json @@ -1,6 +1,6 @@ { "name": "lefthook-darwin-x64", - "version": "1.7.2", + "version": "1.7.3", "description": "The macOS 64-bit binary for lefthook, git hooks manager.", "bin": { "lefthook": "bin/lefthook" diff --git a/packaging/npm/lefthook-freebsd-arm64/package.json b/packaging/npm/lefthook-freebsd-arm64/package.json index a7032ccf..6f51d383 100644 --- a/packaging/npm/lefthook-freebsd-arm64/package.json +++ b/packaging/npm/lefthook-freebsd-arm64/package.json @@ -1,6 +1,6 @@ { "name": "lefthook-freebsd-arm64", - "version": "1.7.2", + "version": "1.7.3", "description": "The FreeBSD ARM 64-bit binary for lefthook, git hooks manager.", "bin": { "lefthook": "bin/lefthook" diff --git a/packaging/npm/lefthook-freebsd-x64/package.json b/packaging/npm/lefthook-freebsd-x64/package.json index 08717fe2..c3365d64 100644 --- a/packaging/npm/lefthook-freebsd-x64/package.json +++ b/packaging/npm/lefthook-freebsd-x64/package.json @@ -1,6 +1,6 @@ { "name": "lefthook-freebsd-x64", - "version": "1.7.2", + "version": "1.7.3", "description": "The FreeBSD 64-bit binary for lefthook, git hooks manager.", "bin": { "lefthook": "bin/lefthook" diff --git a/packaging/npm/lefthook-linux-arm64/package.json b/packaging/npm/lefthook-linux-arm64/package.json index 8c6bce24..79500c59 100644 --- a/packaging/npm/lefthook-linux-arm64/package.json +++ b/packaging/npm/lefthook-linux-arm64/package.json @@ -1,6 +1,6 @@ { "name": "lefthook-linux-arm64", - "version": "1.7.2", + "version": "1.7.3", "description": "The Linux ARM 64-bit binary for lefthook, git hooks manager.", "bin": { "lefthook": "bin/lefthook" diff --git a/packaging/npm/lefthook-linux-x64/package.json b/packaging/npm/lefthook-linux-x64/package.json index e7da2d69..a62a9d04 100644 --- a/packaging/npm/lefthook-linux-x64/package.json +++ b/packaging/npm/lefthook-linux-x64/package.json @@ -1,6 +1,6 @@ { "name": "lefthook-linux-x64", - "version": "1.7.2", + "version": "1.7.3", "description": "The Linux 64-bit binary for lefthook, git hooks manager.", "bin": { "lefthook": "bin/lefthook" diff --git a/packaging/npm/lefthook-windows-arm64/package.json b/packaging/npm/lefthook-windows-arm64/package.json index 55c84d7e..ca78ee9a 100644 --- a/packaging/npm/lefthook-windows-arm64/package.json +++ b/packaging/npm/lefthook-windows-arm64/package.json @@ -1,6 +1,6 @@ { "name": "lefthook-windows-arm64", - "version": "1.7.2", + "version": "1.7.3", "description": "The Windows ARM 64-bit binary for lefthook, git hooks manager.", "bin": { "lefthook": "bin/lefthook" diff --git a/packaging/npm/lefthook-windows-x64/package.json b/packaging/npm/lefthook-windows-x64/package.json index 0d2dd46e..a8ca300d 100644 --- a/packaging/npm/lefthook-windows-x64/package.json +++ b/packaging/npm/lefthook-windows-x64/package.json @@ -1,6 +1,6 @@ { "name": "lefthook-windows-x64", - "version": "1.7.2", + "version": "1.7.3", "description": "The Windows 64-bit binary for lefthook, git hooks manager.", "bin": { "lefthook": "bin/lefthook" diff --git a/packaging/npm/lefthook/package.json b/packaging/npm/lefthook/package.json index 599ce5f7..fa2b20ed 100644 --- a/packaging/npm/lefthook/package.json +++ b/packaging/npm/lefthook/package.json @@ -1,6 +1,6 @@ { "name": "lefthook", - "version": "1.7.2", + "version": "1.7.3", "description": "Simple git hooks manager", "repository": "https://github.com/evilmartians/lefthook", "main": "bin/index.js", @@ -20,14 +20,14 @@ }, "homepage": "https://github.com/evilmartians/lefthook#readme", "optionalDependencies": { - "lefthook-darwin-arm64": "1.7.2", - "lefthook-darwin-x64": "1.7.2", - "lefthook-linux-arm64": "1.7.2", - "lefthook-linux-x64": "1.7.2", - "lefthook-freebsd-arm64": "1.7.2", - "lefthook-freebsd-x64": "1.7.2", - "lefthook-windows-arm64": "1.7.2", - "lefthook-windows-x64": "1.7.2" + "lefthook-darwin-arm64": "1.7.3", + "lefthook-darwin-x64": "1.7.3", + "lefthook-linux-arm64": "1.7.3", + "lefthook-linux-x64": "1.7.3", + "lefthook-freebsd-arm64": "1.7.3", + "lefthook-freebsd-x64": "1.7.3", + "lefthook-windows-arm64": "1.7.3", + "lefthook-windows-x64": "1.7.3" }, "scripts": { "postinstall": "node postinstall.js" diff --git a/packaging/pack.rb b/packaging/pack.rb index 572d91bb..4d8482d2 100755 --- a/packaging/pack.rb +++ b/packaging/pack.rb @@ -2,7 +2,7 @@ require "fileutils" -VERSION = "1.7.2" +VERSION = "1.7.3" ROOT = File.join(__dir__, "..") DIST = File.join(ROOT, "dist") diff --git a/packaging/rubygems/lefthook.gemspec b/packaging/rubygems/lefthook.gemspec index 11667c85..2084caa5 100644 --- a/packaging/rubygems/lefthook.gemspec +++ b/packaging/rubygems/lefthook.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |spec| spec.name = "lefthook" - spec.version = "1.7.2" + spec.version = "1.7.3" spec.authors = ["A.A.Abroskin", "Evil Martians"] spec.email = ["lefthook@evilmartians.com"]