diff --git a/CHANGELOG b/CHANGELOG index 04a7a5e..5ea8ca6 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +# 1.7.4 + - Fix handling of enum in snake case + # 1.7.3 - Raise DecodingError and EncodingError for invalid strings (thanks to https://github.com/g-andrade) diff --git a/README.md b/README.md index 025bb16..4f96b46 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ If you plan to use the JSON encoding, you'll need to add [`Jason`](https://githu ```elixir def deps do [ - {:protox, "~> 1.6"}, + {:protox, "~> 1.7"}, {:jason, "~> 1.2"} ] end diff --git a/mix.exs b/mix.exs index 056f33c..43b9e58 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Protox.Mixfile do def project do [ app: :protox, - version: "1.7.3", + version: "1.7.4", elixir: "~> 1.12", build_embedded: Mix.env() == :prod, start_permanent: Mix.env() == :prod,