From 72be2597b468a64bc420d2f46defca5ba5f2b068 Mon Sep 17 00:00:00 2001 From: Alexandre Hamez Date: Fri, 27 Sep 2024 15:06:26 +0200 Subject: [PATCH] v1.7.4 --- CHANGELOG | 3 +++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) 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,