From 4ed0ee57feeb8d030f7c816ee5ced6c6c32c1d02 Mon Sep 17 00:00:00 2001 From: Alexandre Hamez Date: Wed, 21 Apr 2021 22:11:37 +0200 Subject: [PATCH] 1.4.0 --- CHANGELOG | 3 +++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 256858c0..f792c9ae 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +* 1.4.0 + - Add support of proto3 optional fields (thanks to https://github.com/sneako) + * 1.3.2 - Bump version to build doc using ex_doc 0.24 diff --git a/README.md b/README.md index 370df4d1..3012e412 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ Add `:protox` to your list of dependencies in `mix.exs`: ```elixir def deps do - [{:protox, "~> 1.3"}] + [{:protox, "~> 1.4"}] end ``` diff --git a/mix.exs b/mix.exs index 0b417279..8c550656 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Protox.Mixfile do def project do [ app: :protox, - version: "1.3.2", + version: "1.4.0", elixir: "~> 1.7", build_embedded: Mix.env() == :prod, start_permanent: Mix.env() == :prod,