Skip to content

Commit

Permalink
ci: update dependencies and supported ruby version (#50)
Browse files Browse the repository at this point in the history
Update dependencies with max range support from 2.6 to 3.3 and add support for ruby 3.3 version in CI.

Co-authored-by: MaryamAdnan3 <[email protected]>
  • Loading branch information
MaryamAdnan3 and MaryamAdnan33 authored Dec 11, 2024
1 parent 606255f commit de79a3b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
if: "! contains(toJSON(github.event.head_commit.message), 'skip ci')"
strategy:
matrix:
ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2']
ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3']

steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
if: "! contains(toJSON(github.event.head_commit.message), 'skip ci')"
strategy:
matrix:
ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2']
ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3']

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Core library ruby does the job of congregating common and core functionality fro


## Installation
You will need `2.6 <= Ruby version <= 3.2` to support this package.
You will need `2.6 <= Ruby version <= 3.3` to support this package.

Installation is quite simple, just execute the following command:
```
Expand Down
10 changes: 5 additions & 5 deletions apimatic_core.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'apimatic_core'
s.version = '0.3.11'
s.version = '0.3.12'
s.summary = 'A library that contains apimatic-apimatic-core logic and utilities for consuming REST APIs using Python SDKs generated '\
'by APIMatic.'
s.description = 'The APIMatic Core libraries provide a stable runtime that powers all the functionality of SDKs.'\
Expand All @@ -12,13 +12,13 @@ Gem::Specification.new do |s|
s.homepage = 'https://apimatic.io'
s.license = 'MIT'
s.add_dependency('apimatic_core_interfaces', '~> 0.2.0')
s.add_dependency('nokogiri', '~> 1.10', '>=1.10.10')
s.add_dependency('nokogiri', '~> 1.13', '>=1.13.10')
s.add_dependency('certifi', '~> 2018.1', '>= 2018.01.18')
s.add_dependency('faraday-multipart', '~> 1.0')
s.add_development_dependency('faraday', '~> 2.0', '>= 2.0.1')
s.add_development_dependency('minitest', '~> 5.14', '>= 5.14.1')
s.add_development_dependency('faraday', '~> 2.8', '>= 2.8.1')
s.add_development_dependency('minitest', '~> 5.25', '>= 5.25.4')
s.add_development_dependency('minitest-proveit', '~> 1.0')
s.add_development_dependency('simplecov', '~> 0.21.2')
s.add_development_dependency('simplecov', '~> 0.22.0')
s.required_ruby_version = ['>= 2.6']
s.files = Dir['{lib, test}/**/*', 'README*', 'LICENSE*']
s.require_paths = ['lib']
Expand Down

0 comments on commit de79a3b

Please sign in to comment.