From da7e8caf6f2f3b6a0ea201749a2d719bdf80f0cc Mon Sep 17 00:00:00 2001 From: Felipe Ripoll Date: Fri, 12 Oct 2018 06:03:04 -0600 Subject: [PATCH] [#217] Version Bump to 2.3.0 --- .gitignore | 1 + CHANGELOG.md | 14 ++++++++++++++ src/apns.app.src | 2 +- 3 files changed, 16 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index c48431d..e5f3077 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ log/ *_plt .DS_Store doc/ +codecov.json diff --git a/CHANGELOG.md b/CHANGELOG.md index ffb12e2..8116fc6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Change Log +## [2.3.0](https://github.com/inaka/apns4erl/tree/2.3.0) (2018-10-12) +[Full Changelog](https://github.com/inaka/apns4erl/compare/2.2.1...2.3.0) + +**Closed issues:** + +- adding coverage in Travis [\#218](https://github.com/inaka/apns4erl/issues/218) + +**Merged pull requests:** + +- \[\#218\] integrating with codecov [\#219](https://github.com/inaka/apns4erl/pull/219) ([ferigis](https://github.com/ferigis)) +- Test erlang 21 [\#216](https://github.com/inaka/apns4erl/pull/216) ([getong](https://github.com/getong)) +- Switch apns to use Gun, add support for CONNECT proxies [\#215](https://github.com/inaka/apns4erl/pull/215) ([essen](https://github.com/essen)) + ## [2.2.1](https://github.com/inaka/apns4erl/tree/2.2.1) (2018-07-04) [Full Changelog](https://github.com/inaka/apns4erl/compare/2.2.0...2.2.1) @@ -11,6 +24,7 @@ **Merged pull requests:** +- Update dependencies and bump version to 2.2.1 [\#213](https://github.com/inaka/apns4erl/pull/213) ([elbrujohalcon](https://github.com/elbrujohalcon)) - send mandatory headers at top [\#212](https://github.com/inaka/apns4erl/pull/212) ([lazedo](https://github.com/lazedo)) - Update from @andreabenini [\#210](https://github.com/inaka/apns4erl/pull/210) ([elbrujohalcon](https://github.com/elbrujohalcon)) - Update README.md [\#204](https://github.com/inaka/apns4erl/pull/204) ([igaray](https://github.com/igaray)) diff --git a/src/apns.app.src b/src/apns.app.src index 3819b15..262a04b 100644 --- a/src/apns.app.src +++ b/src/apns.app.src @@ -1,6 +1,6 @@ {application, apns, [ {description, "APNs provider for Apple Push Notification services (APNs) in Erlang. It supports the HTTP2 API."}, - {vsn, "2.2.1"}, + {vsn, "2.3.0"}, {id, "apns4erl"}, {pkg_name, apns4erl}, {registered, []},