Skip to content

Commit

Permalink
Merge pull request #934 from tildeio/fix-gemspec
Browse files Browse the repository at this point in the history
correct ruby version in gemspec
  • Loading branch information
zvkemp committed May 28, 2021
2 parents 28a2d91 + 740607c commit 7ee54c6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .rubocop_cc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ inherit_from:
- .rubocop_todo.yml

AllCops:
TargetRubyVersion: 2.5
TargetRubyVersion: 2.6
NewCops: enable
SuggestExtensions: false
Exclude:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 5.1.1 (May 27, 2021)

- [BUGFIX] Correct ruby version requirement in skylight.gemspec

## 5.1.0 (May 24, 2021)

- [FEATURE] Add experimental tcp-based `skylightd` (may be enabled with `SKYLIGHT_ENABLE_TCP=true`)
Expand Down
2 changes: 1 addition & 1 deletion lib/skylight/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ module Skylight
# for compatibility with semver when it is parsed by the rust agent.
# This string will be transformed in the gemspec to "5.0.0.alpha"
# to conform with rubygems.
VERSION = "5.1.0".freeze
VERSION = "5.1.1".freeze
end
2 changes: 1 addition & 1 deletion skylight.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
spec.homepage = "https://www.skylight.io"
spec.license = "Nonstandard"

spec.required_ruby_version = ">= 2.5"
spec.required_ruby_version = ">= 2.6"

files =
begin
Expand Down

0 comments on commit 7ee54c6

Please sign in to comment.