Skip to content

Commit b459b67

Browse files
Merge branch 'main' of github.com:epimorphics/sapi-client-ruby
2 parents e8ab834 + 47b72eb commit b459b67

5 files changed

Lines changed: 13 additions & 9 deletions

File tree

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.7.4
1+
2.7.8

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@
22

33
All notable changes will be documented in this file.
44

5+
## 1.1.4 - 2024-10-08
6+
7+
- (Dan) Upgrades ruby version to 2.7.8 and version cadence to 1.1.4
8+
59
## 1.1.3 - 2024-06-03
610

7-
- (AlexT) require 'ostruct' to fix tests in Ruby 3.3.1. Use Matrix tests to check
11+
- (AlexT) require 'ostruct' to fix tests in Ruby 3.3.1. Use Matrix tests to check
812
multiple Ruby versions, 2.7 to 3.3. Bump deps:
913
- rexml 3.2.5 -> 3.2.8 fixing CVE-2024-35176
1014
- concurrent-ruby 1.1.9 -> 1.3.1

Gemfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
sapi-client-ruby (1.1.3)
4+
sapi-client-ruby (1.1.4)
55
faraday_middleware (~> 1.0.0)
66
i18n (~> 1.5)
77

@@ -12,9 +12,9 @@ GEM
1212
ast (2.4.2)
1313
builder (3.2.4)
1414
byebug (11.1.3)
15-
concurrent-ruby (1.3.1)
15+
concurrent-ruby (1.3.4)
1616
docile (1.4.0)
17-
faraday (1.10.3)
17+
faraday (1.10.4)
1818
faraday-em_http (~> 1.0)
1919
faraday-em_synchrony (~> 1.0)
2020
faraday-excon (~> 1.1)
@@ -32,14 +32,14 @@ GEM
3232
faraday-httpclient (1.0.1)
3333
faraday-multipart (1.0.4)
3434
multipart-post (~> 2)
35-
faraday-net_http (1.0.1)
35+
faraday-net_http (1.0.2)
3636
faraday-net_http_persistent (1.2.0)
3737
faraday-patron (1.0.0)
3838
faraday-rack (1.0.0)
3939
faraday-retry (1.0.3)
4040
faraday_middleware (1.0.0)
4141
faraday (~> 1.0)
42-
i18n (1.14.5)
42+
i18n (1.14.6)
4343
concurrent-ruby (~> 1.0)
4444
minitest (5.15.0)
4545
minitest-reporters (1.5.0)

lib/sapi_client/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
module SapiClient
44
MAJOR = 1
55
MINOR = 1
6-
FIX = 3
6+
FIX = 4
77
VERSION = "#{MAJOR}.#{MINOR}.#{FIX}"
88
end

sapi-client-ruby.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
55
require 'sapi_client/version'
66

77
Gem::Specification.new do |spec|
8-
spec.required_ruby_version = '>= 2.7.4'
8+
spec.required_ruby_version = '>= 2.7.8'
99
spec.name = 'sapi-client-ruby'
1010
spec.version = SapiClient::VERSION
1111
spec.authors = ['Epimorphics Ltd']

0 commit comments

Comments
 (0)