From c4eea2dc857b0cc04b00bb33683a8823528795bc Mon Sep 17 00:00:00 2001 From: ajpawlicki Date: Thu, 16 Apr 2020 15:47:28 -0700 Subject: [PATCH] v1.1.2 --- CHANGELOG.md | 17 +++++++++++++++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 13df2e4..7657a0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +#### 1.1.2 (2020-04-16) + +##### Chores + +* **template-syntax:** allow nested merge variables ([#35](https://github.com/lob/lob-elixir/pull/35)) ([a28fc527](https://github.com/lob/lob-elixir/commit/a28fc52757372f08941cf646684aee924eb92872)) +* **docs:** + * updates copyright year to 2020 ([#34](https://github.com/lob/lob-elixir/pull/34)) ([e876385a](https://github.com/lob/lob-elixir/commit/e876385a94955e5b7195ac1dc75ebab0a53892dc)) + * updates copyright year to 2019 ([#30](https://github.com/lob/lob-elixir/pull/30)) ([79b53779](https://github.com/lob/lob-elixir/commit/79b53779ad0b500db899283bd83ab9cbe09973e8)) + +##### New Features + +* **config:** support runtime config with Confex ([#31](https://github.com/lob/lob-elixir/pull/31)) ([b107dd2d](https://github.com/lob/lob-elixir/commit/b107dd2da7ce8dee4e1de403d0cf91c0b642a783)) + +##### Bug Fixes + +* **intl-verification:** updated tests in elixir library ([#33](https://github.com/lob/lob-elixir/pull/33)) ([b1bacd56](https://github.com/lob/lob-elixir/commit/b1bacd56fd3a1752cdbda4614354b3120cbc0841)) + #### 1.1.1 (2019-02-01) ##### Chores diff --git a/README.md b/README.md index b301261..b2e5ff9 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ The package can be installed by adding `lob_elixir` to your list of dependencies ```elixir def deps do [ - {:lob_elixir, "~> 1.1.1"} + {:lob_elixir, "~> 1.1.2"} ] end ``` diff --git a/mix.exs b/mix.exs index 18e6ce5..c777346 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Lob.Mixfile do def project do [ app: :lob_elixir, - version: "1.1.1", + version: "1.1.2", elixir: "~> 1.4", preferred_cli_env: ["coveralls.html": :test], start_permanent: Mix.env() == :prod,