Skip to content

Commit

Permalink
Merge branch 'master' into 1.0.x
Browse files Browse the repository at this point in the history
  • Loading branch information
jodosha committed Mar 31, 2017
2 parents 0456c6b + 967fe47 commit d1c2797
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,8 @@
# Hanami::Controller
Complete, fast and testable actions for Rack

## v1.0.0.rc1 - 2017-03-31

## v1.0.0.beta3 - 2017-03-17
### Changed
- [Luca Guidi] `Action#flash` is now public API
Expand Down
6 changes: 3 additions & 3 deletions Gemfile
Expand Up @@ -7,11 +7,11 @@ unless ENV['TRAVIS']
end

gem 'minitest', '~> 5.8'
gem 'hanami-utils', '~> 1.0.0.beta1', require: false, github: 'hanami/utils', branch: '1.0.x'
gem 'hanami-router', '~> 1.0.0.beta1', require: false, github: 'hanami/router', branch: '1.0.x'
gem 'hanami-utils', '~> 1.0.0.rc1', require: false, github: 'hanami/utils', branch: '1.0.x'
gem 'hanami-router', '~> 1.0.0.rc1', require: false, github: 'hanami/router', branch: '1.0.x'

group :validations do
gem 'hanami-validations', '~> 1.0.0.beta1', require: false, github: 'hanami/validations', branch: '1.0.x'
gem 'hanami-validations', '~> 1.0.0.rc1', require: false, github: 'hanami/validations', branch: '1.0.x'
end

gem 'coveralls', require: false
6 changes: 3 additions & 3 deletions hanami-controller.gemspec
Expand Up @@ -6,8 +6,8 @@ require 'hanami/controller/version'
Gem::Specification.new do |spec|
spec.name = 'hanami-controller'
spec.version = Hanami::Controller::VERSION
spec.authors = ['Luca Guidi', 'Trung Lê', 'Alfonso Uceda']
spec.email = ['me@lucaguidi.com', 'trung.le@ruby-journal.com', 'uceda73@gmail.com']
spec.authors = ['Luca Guidi']
spec.email = ['me@lucaguidi.com']
spec.description = %q{Complete, fast and testable actions for Rack}
spec.summary = %q{Complete, fast and testable actions for Rack and Hanami}
spec.homepage = 'http://hanamirb.org'
Expand All @@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
spec.required_ruby_version = '>= 2.3.0'

spec.add_dependency 'rack', '~> 2.0'
spec.add_dependency 'hanami-utils', '~> 1.0.0.beta1'
spec.add_dependency 'hanami-utils', '~> 1.0.0.rc1'

spec.add_development_dependency 'bundler', '~> 1.6'
spec.add_development_dependency 'rack-test', '~> 0.6'
Expand Down
2 changes: 1 addition & 1 deletion lib/hanami/controller/version.rb
Expand Up @@ -3,6 +3,6 @@ module Controller
# Defines the version
#
# @since 0.1.0
VERSION = '1.0.0.beta3'.freeze
VERSION = '1.0.0.rc1'.freeze
end
end
2 changes: 1 addition & 1 deletion test/version_test.rb
Expand Up @@ -2,6 +2,6 @@

describe Hanami::Controller::VERSION do
it 'returns the current version' do
Hanami::Controller::VERSION.must_equal '1.0.0.beta3'
Hanami::Controller::VERSION.must_equal '1.0.0.rc1'
end
end

0 comments on commit d1c2797

Please sign in to comment.