Skip to content

Commit

Permalink
minimum ruby version >= 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
simonneutert committed Sep 16, 2024
1 parent 214e882 commit 3528260
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ jobs:
strategy:
matrix:
ruby-version:
- "2.7"
- "3.0"
- "3.1"
- "3.2"
- "3.3"
- "jruby-9.4"
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ require:
- rubocop-rspec

AllCops:
TargetRubyVersion: 2.7
TargetRubyVersion: 3.0
NewCops: enable
Exclude:
- vendor/**/*
Expand Down
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
### 2.1.1 (Next)
### 3.0.0 (Next)

* [#84](https://github.com/dblock/strava-ruby-client/pull/84): Adds back activity photos (finished PR #83) - [@simonneutert](https://github.com/simonneutert).
* [#83](https://github.com/dblock/strava-ruby-client/pull/83): Adds back activity photos - [@dillon-co](https://github.com/dillon-co).
* [#84](https://github.com/dblock/strava-ruby-client/pull/84): Adds back activity photos (finished PR #83) - [@simonneutert](https://github.com/simonneutert).
* [#85](https://github.com/dblock/strava-ruby-client/pull/85): Lays groundwork to v3.0.0 of the gem (ruby3, newest rubocop, rubocop-rake and rubocop-rspec) - [@simonneutert](https://github.com/simonneutert).
* Your contribution here.

### 2.1.0 (2024/3/20)
Expand Down
2 changes: 1 addition & 1 deletion lib/strava/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Strava
VERSION = '2.1.1'
VERSION = '3.0.0'
end
4 changes: 2 additions & 2 deletions strava-ruby-client.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Gem::Specification.new do |s|
s.authors = ['Daniel Doubrovkine']
s.email = '[email protected]'
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 2.7'
s.required_rubygems_version = '>= 1.3.6'
s.required_ruby_version = '>= 3.0'
s.required_rubygems_version = '>= 2.5'
s.files = Dir['{bin,lib}/**/*'] + ['README.md', 'LICENSE.md', 'CHANGELOG.md']
s.require_paths = ['lib']
s.homepage = 'http://github.com/dblock/strava-ruby-client'
Expand Down

0 comments on commit 3528260

Please sign in to comment.