From bc185ada1fc84e09dd33f69ab6c8f4028101d37d Mon Sep 17 00:00:00 2001 From: Finn Hodgkin Date: Mon, 4 Jun 2018 10:34:12 +0100 Subject: [PATCH] ticks version number for #30 and #28 --- README.md | 2 +- lib/pre_commit.ex | 2 +- mix.exs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c3a4285..ffbf61c 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/lib/pre_commit.ex b/lib/pre_commit.ex index 0ccd3e9..eb687e1 100644 --- a/lib/pre_commit.ex +++ b/lib/pre_commit.ex @@ -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. diff --git a/mix.exs b/mix.exs index 30aa5ac..530694f 100644 --- a/mix.exs +++ b/mix.exs @@ -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,