From 03bd514b3a4f3fa0e163910bed50c02150706e60 Mon Sep 17 00:00:00 2001 From: Andy Pfister Date: Tue, 30 Jan 2024 16:08:11 +0100 Subject: [PATCH] Prepare to release v5.2.0 --- CHANGELOG.md | 13 +++++++++++++ Gemfile.lock | 10 ++++------ lib/datatrans/version.rb | 2 +- 3 files changed, 18 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 21e6f65..aabf7b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,19 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## 5.2.0 - 2024-01-31 + +### Added + +* Support for Ruby 3.3 and Rails 7.1 (@andyundso [#47](https://github.com/simplificator/datatrans/pull/47)) +* Support for Merchant Initiated Payments (@visini [#48](https://github.com/simplificator/datatrans/pull/48), [#52](https://github.com/simplificator/datatrans/pull/52), [#53](https://github.com/simplificator/datatrans/pull/53), [#56](https://github.com/simplificator/datatrans/pull/56)) + +### Changed + +* Reformatted code with standardrb (@andyundso [#57](https://github.com/simplificator/datatrans/pull/57)) +* Marked XML APIs and Web APIs as deprecated (@andyundso [#60](https://github.com/simplificator/datatrans/pull/60)) +* Renamed `Datatrans::JSON::Transaction::Authorize` to `Datatrans::JSON::Transaction::Init`. `::Authorize` will still work until the next major release (@andyundso [#60](https://github.com/simplificator/datatrans/pull/60)) + ## 5.1.0 - 2023-07-06 ### Added diff --git a/Gemfile.lock b/Gemfile.lock index df94a36..407ce21 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - datatrans (5.1.0) + datatrans (5.2.0) activesupport (>= 5.2) builder httparty @@ -41,8 +41,8 @@ GEM diff-lcs (1.5.0) docile (1.4.0) erubi (1.10.0) - httparty (0.20.0) - mime-types (~> 3.0) + httparty (0.21.0) + mini_mime (>= 1.0.0) multi_xml (>= 0.5.2) i18n (1.10.0) concurrent-ruby (~> 1.0) @@ -52,9 +52,7 @@ GEM loofah (2.16.0) crass (~> 1.0.2) nokogiri (>= 1.5.9) - mime-types (3.4.1) - mime-types-data (~> 3.2015) - mime-types-data (3.2022.0105) + mini_mime (1.1.5) mini_portile2 (2.8.5) minitest (5.15.0) multi_xml (0.6.0) diff --git a/lib/datatrans/version.rb b/lib/datatrans/version.rb index 2eb84d8..831d080 100644 --- a/lib/datatrans/version.rb +++ b/lib/datatrans/version.rb @@ -1,3 +1,3 @@ module Datatrans - VERSION = "5.1.0" + VERSION = "5.2.0" end