From 18af775cf09d709d8253c88772d754aceedf83d8 Mon Sep 17 00:00:00 2001 From: Petro Smachylo Date: Sun, 22 Oct 2023 12:54:21 +0300 Subject: [PATCH] Chnage release version, add changelog (#302) --- CHANGELOG.md | 16 ++++++++++++++++ README.md | 2 +- lib/mailgun/version.rb | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..87bbcf1 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,16 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +## [Unreleased] + +## [1.2.12] - 2023-10-22 + +### Added + +- Templates CRUD support (https://github.com/mailgun/mailgun-ruby/pull/300). + +### Fixed + +- transform_for_mailgun block iteration issue (https://github.com/mailgun/mailgun-ruby/pull/298). +- Typos in several files (https://github.com/mailgun/mailgun-ruby/pull/297). diff --git a/README.md b/README.md index e40ce53..cc59411 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ gem install mailgun-ruby Gemfile: ```ruby -gem 'mailgun-ruby', '~>1.2.11' +gem 'mailgun-ruby', '~>1.2.12' ``` Usage diff --git a/lib/mailgun/version.rb b/lib/mailgun/version.rb index 5132240..4bf805a 100644 --- a/lib/mailgun/version.rb +++ b/lib/mailgun/version.rb @@ -1,4 +1,4 @@ # It's the version. Yeay! module Mailgun - VERSION = '1.2.11' + VERSION = '1.2.12' end