Skip to content

Commit

Permalink
Merge branch 'hotfix/5.0.2'
Browse files Browse the repository at this point in the history
* hotfix/5.0.2:
  Update Changelog and version
  Update development dependencies
  Replace around_filter with around_action
  • Loading branch information
tagliala committed Aug 2, 2016
2 parents 182415e + 18c0765 commit 64b9ef8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,10 @@
# Changelog

## 5.0.2 (2016-08-02)

* Replace around_filter with around_action
* Update development dependencies

## 5.0.1 (2016-07-14)

* Add private keyword in Segment module
Expand Down
2 changes: 1 addition & 1 deletion lib/route_translator/extensions/action_controller.rb
Expand Up @@ -6,7 +6,7 @@ module Controller
extend ActiveSupport::Concern

included do
around_filter :set_locale_from_url
around_action :set_locale_from_url
end

private
Expand Down
2 changes: 1 addition & 1 deletion lib/route_translator/version.rb
@@ -1,4 +1,4 @@
# frozen_string_literal: true
module RouteTranslator
VERSION = '5.0.1'.freeze
VERSION = '5.0.2'.freeze
end
4 changes: 2 additions & 2 deletions route_translator.gemspec
Expand Up @@ -22,10 +22,10 @@ Gem::Specification.new do |spec|

spec.add_development_dependency 'appraisal', '~> 2.1'
spec.add_development_dependency 'byebug', '~> 9.0'
spec.add_development_dependency 'coveralls', '~> 0.8.14'
spec.add_development_dependency 'coveralls', '~> 0.8.15'
spec.add_development_dependency 'minitest', '>= 4.7.5', '< 6.0.0'
spec.add_development_dependency 'rails', '>= 5.0.0', '< 5.1'
spec.add_development_dependency 'rake', '~> 11.2'
spec.add_development_dependency 'rubocop', '~> 0.41.2'
spec.add_development_dependency 'rubocop', '~> 0.42.0'
spec.add_development_dependency 'simplecov', '~> 0.12.0'
end

0 comments on commit 64b9ef8

Please sign in to comment.