Skip to content

Commit

Permalink
Bump version + ruby 2.4 (non-)compatibility
Browse files Browse the repository at this point in the history
Until I get time to fix this bug, I'll at least let people know that
this gem is not ruby 2.4 compatible.
  • Loading branch information
leesharma committed Feb 17, 2019
1 parent a256391 commit c69e6d4
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ rvm:
- 2.0.0
- 2.1
- 2.2
- ruby-head
- 2.3

addons:
code_climate:
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,16 @@ See also

---

## [v1.0.1] - 2019-02-16

Mention max ruby version in gemspec

### Updates

No code updates. It looks like some functionality breaks under ruby 2.4+, so
this change updates the gemspec to reflect this. A future update will probably
resolve the bug.

## [v1.0.0] - 2016-08-26

Bump Version and Misc Updates
Expand Down
2 changes: 1 addition & 1 deletion lib/rescuetime/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

module Rescuetime
# rescuetime gem version number
VERSION = '1.0.0'.freeze
VERSION = '1.0.1'.freeze
end
2 changes: 1 addition & 1 deletion rescuetime.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
spec.bindir = 'bin'
spec.require_paths = ['lib']

spec.required_ruby_version = '>= 2.0.0'
spec.required_ruby_version = '>= 2.0.0', '< 2.4'

spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake', '~> 10.4', '>= 10.4.2'
Expand Down

0 comments on commit c69e6d4

Please sign in to comment.