From 9ba1d0dfb3819f1b2de3aa05b6f4e62c2fb43d28 Mon Sep 17 00:00:00 2001 From: Alexandre Hamez Date: Thu, 18 Aug 2022 09:35:38 +0200 Subject: [PATCH] 1.7.0 --- CHANGELOG | 3 +++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 6495d27..28154dd 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +# 1.7.0 + - Add support of FileOptions (which can be access with `Msg.file_options/0`) + # 1.6.10 - Fix format of generated files diff --git a/README.md b/README.md index 4a3d1da..2e1a390 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ Add `:protox` to your list of dependencies in `mix.exs`: ```elixir def deps do - [{:protox, "~> 1.6"}] + [{:protox, "~> 1.7"}] end ``` diff --git a/mix.exs b/mix.exs index 2b74905..511d1c6 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Protox.Mixfile do def project do [ app: :protox, - version: "1.6.10", + version: "1.7.0", elixir: "~> 1.9", build_embedded: Mix.env() == :prod, start_permanent: Mix.env() == :prod,