Skip to content

Commit

Permalink
Merge pull request #58 from epimorphics/issue/15-sapi-client-ruby-upg…
Browse files Browse the repository at this point in the history
…rade

Issue/15 sapi client ruby upgrade
  • Loading branch information
DanielCouzens authored Oct 8, 2024
2 parents b2d1411 + a3f4b6f commit 47b72eb
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.4
2.7.8
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@

All notable changes will be documented in this file.

## 1.1.4 - 2024-10-08

- (Dan) Upgrades ruby version to 2.7.8 and version cadence to 1.1.4

## 1.1.3 - 2024-06-03

- (AlexT) require 'ostruct' to fix tests in Ruby 3.3.1. Use Matrix tests to check
- (AlexT) require 'ostruct' to fix tests in Ruby 3.3.1. Use Matrix tests to check
multiple Ruby versions, 2.7 to 3.3. Bump deps:
- rexml 3.2.5 -> 3.2.8 fixing CVE-2024-35176
- concurrent-ruby 1.1.9 -> 1.3.1
Expand Down
10 changes: 5 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
sapi-client-ruby (1.1.3)
sapi-client-ruby (1.1.4)
faraday_middleware (~> 1.0.0)
i18n (~> 1.5)

Expand All @@ -12,9 +12,9 @@ GEM
ast (2.4.2)
builder (3.2.4)
byebug (11.1.3)
concurrent-ruby (1.3.1)
concurrent-ruby (1.3.4)
docile (1.4.0)
faraday (1.10.3)
faraday (1.10.4)
faraday-em_http (~> 1.0)
faraday-em_synchrony (~> 1.0)
faraday-excon (~> 1.1)
Expand All @@ -32,14 +32,14 @@ GEM
faraday-httpclient (1.0.1)
faraday-multipart (1.0.4)
multipart-post (~> 2)
faraday-net_http (1.0.1)
faraday-net_http (1.0.2)
faraday-net_http_persistent (1.2.0)
faraday-patron (1.0.0)
faraday-rack (1.0.0)
faraday-retry (1.0.3)
faraday_middleware (1.0.0)
faraday (~> 1.0)
i18n (1.14.5)
i18n (1.14.6)
concurrent-ruby (~> 1.0)
minitest (5.15.0)
minitest-reporters (1.5.0)
Expand Down
2 changes: 1 addition & 1 deletion lib/sapi_client/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
module SapiClient
MAJOR = 1
MINOR = 1
FIX = 3
FIX = 4
VERSION = "#{MAJOR}.#{MINOR}.#{FIX}"
end
2 changes: 1 addition & 1 deletion sapi-client-ruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'sapi_client/version'

Gem::Specification.new do |spec|
spec.required_ruby_version = '>= 2.7.4'
spec.required_ruby_version = '>= 2.7.8'
spec.name = 'sapi-client-ruby'
spec.version = SapiClient::VERSION
spec.authors = ['Epimorphics Ltd']
Expand Down

0 comments on commit 47b72eb

Please sign in to comment.