Skip to content

Commit

Permalink
[skip travis] update to 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
A.A.Abroskin committed Jul 10, 2019
1 parent d55eacd commit 0d5df47
Show file tree
Hide file tree
Showing 10 changed files with 33 additions and 3 deletions.
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.5.7",
"version": "0.6.0",
"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.5.7"
spec.version = "0.6.0"
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.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Change log

## master (unreleased)

## 0.6.0 (2019-07-10)

- PR [#24](https://github.com/palkan/logidze/pull/110) Wrap `run` command in shell context.

Now in `run` option available `sh` syntax.

```
pre-commit:
commands:
bashed:
run: rubocop -a && git add
```
Will be executed in this way:
```
sh -c "rubocop -a && git add"
```

- PR [#23](https://github.com/Arkweid/lefthook/pull/24) Search Lefthook in Gemfile.

Now it's possible to use Lefthook from Gemfile.

```ruby
# Gemfile

gem 'lefthook'
```
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.5.7"
version string = "0.6.0"
)

// versionCmd represents the version command
Expand Down

0 comments on commit 0d5df47

Please sign in to comment.