From 6b58b7aaba00b2b5faf1d7e8e2e226b9d2b72a7b Mon Sep 17 00:00:00 2001 From: Alexandre Hamez Date: Sun, 27 Sep 2020 11:36:01 +0200 Subject: [PATCH] 1.0.0 --- CHANGELOG | 3 +++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index d6c4bd46..955a4e5e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +* 1.0.0 + - Use Protox exceptions as errors codes + * 0.25.0 - Add mix task to generate files - Bump to Elixir 1.7 as minimal supported version diff --git a/README.md b/README.md index 78a1880c..48ebe4fa 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Add `:protox` to your list of dependencies in `mix.exs`: ```elixir def deps do - [{:protox, "~> 0.25.0"}] + [{:protox, "~> 1.0.0"}] end ``` diff --git a/mix.exs b/mix.exs index c7bbd4d9..a45e77bf 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Protox.Mixfile do def project do [ app: :protox, - version: "0.25.0", + version: "1.0.0", elixir: "~> 1.7", build_embedded: Mix.env() == :prod, start_permanent: Mix.env() == :prod,