Skip to content

Commit

Permalink
release 0.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Abroskin committed Nov 16, 2019
1 parent 48702a0 commit 470f466
Show file tree
Hide file tree
Showing 11 changed files with 62 additions and 48 deletions.
92 changes: 48 additions & 44 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,20 @@ builds:
- linux
- darwin
- windows
archive:
format: gz
files:
- none*
replacements:
windows: Windows
darwin: MacOS
linux: Linux
386: i386
amd64: x86_64
format_overrides:
- goos: windows
format: zip
archives:
- id: lefthook
format: gz
files:
- none*
replacements:
windows: Windows
darwin: MacOS
linux: Linux
386: i386
amd64: x86_64
format_overrides:
- goos: windows
format: zip
checksum:
name_template: '{{ .ProjectName }}_checksums.txt'
snapshot:
Expand All @@ -36,36 +37,39 @@ changelog:
- '^tmp:'
- '^context:'

brew:
github:
owner: Arkweid
name: homebrew-lefthook
homepage: "https://github.com/Arkweid/lefthook"
description: "Lefthook a single dependency-free binary to manage all your git hooks that works with any language in any environment, and in all common team workflows"
folder: Formula
test: |
system "#{bin}/lefthook version"
brews:
-
github:
owner: Arkweid
name: homebrew-lefthook
homepage: "https://github.com/Arkweid/lefthook"
description: "Lefthook a single dependency-free binary to manage all your git hooks that works with any language in any environment, and in all common team workflows"
folder: Formula
test: |
system "#{bin}/lefthook version"
snapcraft:
name_template: '{{ .ProjectName }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
summary: For rule your git hooks
description: |
Lefthook a single dependency-free binary to manage all your git hooks that works with any language in any environment, and in all common team workflows.
grade: stable
confinement: strict
publish: true
# snapcrafts:
# -
# name_template: '{{ .ProjectName }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
# summary: For rule your git hooks
# description: |
# Lefthook a single dependency-free binary to manage all your git hooks that works with any language in any environment, and in all common team workflows.
# grade: stable
# confinement: strict
# publish: true

nfpm:
name_template: '{{ .ProjectName }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
homepage: https://github.com/Arkweid/lefthook
description: Lefthook a single dependency-free binary to manage all your git hooks that works with any language in any environment, and in all common team workflows
maintainer: Alexander Abroskin <[email protected]>
license: MIT
vendor: Arkweid
formats:
- deb
- rpm
dependencies:
- git
recommends:
- rpm
nfpms:
-
name_template: '{{ .ProjectName }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
homepage: https://github.com/Arkweid/lefthook
description: Lefthook a single dependency-free binary to manage all your git hooks that works with any language in any environment, and in all common team workflows
maintainer: Alexander Abroskin <[email protected]>
license: MIT
vendor: Arkweid
formats:
- deb
- rpm
dependencies:
- git
recommends:
- rpm
Binary file modified .npm/bin/lefthook-linux
Binary file not shown.
Binary file modified .npm/bin/lefthook-mac
Binary file not shown.
Binary file modified .npm/bin/lefthook-win.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion .npm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arkweid/lefthook",
"version": "0.6.4",
"version": "0.6.5",
"description": "Simple git hooks manager",
"main": "index.js",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion .rubygems/lefthook.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |spec|
spec.name = "lefthook"
spec.version = "0.6.4"
spec.version = "0.6.5"
spec.authors = ["A.A.Abroskin"]
spec.email = ["[email protected]"]

Expand Down
Binary file modified .rubygems/libexec/lefthook-linux
Binary file not shown.
Binary file modified .rubygems/libexec/lefthook-mac
Binary file not shown.
Binary file modified .rubygems/libexec/lefthook-win.exe
Binary file not shown.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,17 @@

## master (unreleased)

# 0.6.4 (2019-07-15)
# 0.6.5 (2019-11-15)

- [PR](https://github.com/Arkweid/lefthook/pull/89) Add support for git-worktree. Thanks @f440

- [Commit](https://github.com/Arkweid/lefthook/commit/48702a0806d2b2eab13636ba56b0e0b99f346f1c)
Commands and Scripts now can catch Stdin

- [Commit](https://github.com/Arkweid/lefthook/commit/9a226842292ff1dda0f2273b66a0799988aa5289)
Add partial support for monorepos and command execution not from project root

# 0.6.4 (2019-11-08)

- [PR](https://github.com/Arkweid/lefthook/pull/84) Fix return value from shell exit. Thanks @HaiD84

Expand Down
2 changes: 1 addition & 1 deletion cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
)

const (
version string = "0.6.4"
version string = "0.6.5"
)

// versionCmd represents the version command
Expand Down

0 comments on commit 470f466

Please sign in to comment.