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

update heartcheck-cache version #4

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ matrix:
- rvm: 2.5
- rvm: 2.6
- rvm: 2.7
- rvm: 3.0
services:
- memcached
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [3.0.0] - 2021-02-08

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Found reference to undefined definition

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use the trailing [] on reference links

## Changed
- Add support for ruby 3.0

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Incorrect list-item indent: add 2 spaces


## [2.0.0] - 2020-04-02
## Changed
- Add support for ruby 2.7
Expand Down
2 changes: 1 addition & 1 deletion heartcheck-redis.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
spec.test_files = spec.files.grep(/^spec\//)
spec.require_paths = ['lib']

spec.required_ruby_version = '>= 2.3'
spec.required_ruby_version = '>= 3.0'

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

required_ruby_version (3.0, declared in heartcheck-redis.gemspec) and TargetRubyVersion (2.4, which may be specified in .rubocop.yml) should be equal.


spec.add_runtime_dependency 'net-telnet', '~> 0.1.1'

Expand Down
2 changes: 1 addition & 1 deletion lib/heartcheck/cache/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
module Heartcheck
# gem version
module Cache
VERSION = '2.0.0'
VERSION = '3.0.0'

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Freeze mutable objects assigned to constants.

end
end