Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The first step will be to add this module to your mix.exs.

```elixir
def deps do
[{:pre_commit, "~> 0.2.4", only: :dev}]
[{:pre_commit, "~> 0.3.4", only: :dev}]
end
```

Expand Down
2 changes: 1 addition & 1 deletion lib/pre_commit.ex
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ defmodule PreCommit do
The first step will be to add this module to your mix.exs.
```elixir
def deps do
[{:pre_commit, "~> 0.2.4", only: :dev}]
[{:pre_commit, "~> 0.3.4", only: :dev}]
end
```
Then run mix deps.get. When the module is installed it will either create or overwrite your current `pre-commit` file in your `.git/hooks` directory.
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule PreCommit.Mixfile do

def project do
[app: :pre_commit,
version: "0.2.4",
version: "0.3.4",
elixir: "~> 1.2",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
Expand Down