Prepare for v0.6.1

This commit is contained in:
Luca Guidi 2016-01-19 09:38:55 +01:00
parent 27e2d3acb6
commit 85d16fe52b
3 changed files with 6 additions and 2 deletions

View File

@ -1,6 +1,10 @@
# Lotus::Utils
Ruby core extentions and class utilities for Lotus
## v0.6.1 - 2016-01-19
### Fixed
- [Anton Davydov] Ensure `Lotus::Utils::String#classify` to work properly with dashes (eg. `"app-store" => "App::Store"`)
## v0.6.0 - 2016-01-12
### Added
- [Luca Guidi] Official support for Ruby 2.3

View File

@ -3,6 +3,6 @@ module Lotus
# Defines the version
#
# @since 0.1.0
VERSION = '0.6.0'.freeze
VERSION = '0.6.1'.freeze
end
end

View File

@ -2,6 +2,6 @@ require 'test_helper'
describe Lotus::Utils::VERSION do
it 'exposes version' do
Lotus::Utils::VERSION.must_equal '0.6.0'
Lotus::Utils::VERSION.must_equal '0.6.1'
end
end