From 6bd7bf2d9599f01a67e18d4314f8c114a8a9d7f3 Mon Sep 17 00:00:00 2001 From: Daniel Couzens Date: Mon, 7 Oct 2024 16:07:23 +0100 Subject: [PATCH] Data services api: ruby updrade --- .ruby-version | 2 +- CHANGELOG.md | 4 ++++ lib/data_services_api/version.rb | 6 +++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.ruby-version b/.ruby-version index 1f7da99..6a81b4c 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -2.7.7 +2.7.8 diff --git a/CHANGELOG.md b/CHANGELOG.md index eb1ce9e..3d91964 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog for DS API rubygem +## 1.5.0 - 2023-06-23 + +- (Dan) Updates rubt to 2.7.8 and version cadence to 1.5.0 + ## 1.4.1 - 2023-06-23 - (Jon) Now handles matching the message flag while ignoring the casing of the message diff --git a/lib/data_services_api/version.rb b/lib/data_services_api/version.rb index b873cfe..6ceb7fc 100644 --- a/lib/data_services_api/version.rb +++ b/lib/data_services_api/version.rb @@ -3,8 +3,8 @@ # :nodoc: module DataServicesApi MAJOR = 1 - MINOR = 4 - PATCH = 1 - SUFFIX = 1 + MINOR = 5 + PATCH = 0 + SUFFIX = 0 VERSION = "#{MAJOR}.#{MINOR}.#{PATCH}#{SUFFIX && ".#{SUFFIX}"}" end