Skip to content

Commit 6ec4091

Browse files
committed
Update gem deps for Rails 6 and release the kraken
1 parent a72d4fb commit 6ec4091

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changelog
22
===
33

4+
#### v1.27.0 (2019-08-18)
5+
6+
* Bump rails dependency to support Rails 6.0.0
7+
* Add some metadata to gemspec
8+
* Update Readme
9+
* Update copyright
10+
411
#### v1.26.1 (2018-11-22)
512

613
* Upgrade tablesorter to v2.31.1

jquery-tablesorter.gemspec

+2-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,8 @@ Gem::Specification.new do |s|
1919
'source_code_uri' => 'https://github.com/themilkman/jquery-tablesorter-rails'
2020
}
2121

22-
s.files = Dir['{vendor,lib}/**/*'] + %w( MIT-LICENSE Rakefile README.md )
22+
s.files = Dir['{vendor,lib}/**/*'] + %w[MIT-LICENSE Rakefile README.md]
2323

2424
s.required_ruby_version = '>= 1.9.3'
25-
26-
s.add_dependency 'railties', '>= 3.2', '< 6'
25+
s.add_dependency 'railties', '>= 3.2', '~> 6.0.0'
2726
end

lib/jquery-tablesorter/version.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module JqueryTablesorter
22
MAJOR = 1
3-
MINOR = 26
4-
TINY = 1
3+
MINOR = 27
4+
TINY = 0
55

66
VERSION = [MAJOR, MINOR, TINY].compact.join('.')
77
end

0 commit comments

Comments
 (0)