Skip to content

Commit

Permalink
Merge pull request #812 from DavyJonesLocker/allow-ruby-3
Browse files Browse the repository at this point in the history
Allow ruby 3
  • Loading branch information
tagliala authored Oct 10, 2020
2 parents 71b29fe + 3c6f60f commit d4ec9d0
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 17.1.0 / 2020-10-10

* [FEATURE] Allow Ruby 3.0.0
* [ENHANCEMENT] Test against latest Ruby 2.7.2
* [ENHANCEMENT] Update QUnit to 2.11.3
* [ENHANCEMENT] Update development dependencies

## 17.0.0 / 2020-05-16

* [FEATURE] Drop Ruby 2.3 support
Expand Down
2 changes: 1 addition & 1 deletion client_side_validations.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
spec.require_paths = ['lib']

spec.platform = Gem::Platform::RUBY
spec.required_ruby_version = '~> 2.4'
spec.required_ruby_version = '>= 2.4'

spec.add_dependency 'rails', '>= 5.0.0.1', '< 6.1'

Expand Down
2 changes: 1 addition & 1 deletion lib/client_side_validations/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module ClientSideValidations
VERSION = '17.0.0'
VERSION = '17.1.0'
end
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"@rollup/plugin-node-resolve": "^9.0.0",
"chrome-launcher": "^0.13.4",
"puppeteer-core": "^5.3.1",
"rollup": "^2.28.1",
"rollup": "^2.29.0",
"rollup-plugin-copy": "^3.3.0",
"standard": "^14.3.4"
},
Expand Down
2 changes: 1 addition & 1 deletion test/javascript/server.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def call(env)
use AssetPath, urls: ['/vendor/assets/javascripts'], root: File.expand_path('../', $LOAD_PATH.find { |p| p.include?('jquery-rails') })

DEFAULT_JQUERY_VERSION = '3.5.1'
QUNIT_VERSION = '2.9.2'
QUNIT_VERSION = '2.11.3'

helpers do
def jquery_version
Expand Down

0 comments on commit d4ec9d0

Please sign in to comment.