Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: update dependencies and supported ruby version #50

Merged
merged 2 commits into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading