Skip to content

Commit

Permalink
Prepare for v0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jodosha committed Sep 18, 2015
1 parent bfe1bc9 commit fefd9d6
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,11 @@ rvm:
- 2.2.2
- 2.2.3
- rbx-2
- ruby-head
- jruby-head
- jruby-9000

matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-9000
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Lotus::Validations
Validations mixin for Ruby objects

## v0.3.3 - 2015-09-23
### Added [Luca Guidi] Official support for JRuby 9k+

## v0.3.2 - 2015-05-22
### Added [deepj] Introduced `Lotus::Validations#invalid?`

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Validations mixins for objects

## Rubies

__Lotus::Validations__ supports Ruby (MRI) 2+, JRuby 1.7 (with 2.0 mode) and Rubinius 2.3.0+.
__Lotus::Validations__ supports Ruby (MRI) 2+, JRuby 9k+ & Rubinius 2.3+

## Installation

Expand Down
2 changes: 1 addition & 1 deletion lib/lotus/validations/version.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module Lotus
module Validations
# @since 0.1.0
VERSION = '0.3.2'.freeze
VERSION = '0.3.3'.freeze
end
end
4 changes: 2 additions & 2 deletions lotus-validations.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ require 'lotus/validations/version'
Gem::Specification.new do |spec|
spec.name = 'lotus-validations'
spec.version = Lotus::Validations::VERSION
spec.authors = ['Luca Guidi', 'Trung Lê']
spec.email = ['me@lucaguidi.com', 'trung.le@ruby-journal.com']
spec.authors = ['Luca Guidi', 'Trung Lê', 'Alfonso Uceda']
spec.email = ['me@lucaguidi.com', 'trung.le@ruby-journal.com', 'uceda73@gmail.com']
spec.summary = %q{Validations mixin for Ruby objects}
spec.description = %q{Validations mixin for Ruby objects and support for Lotus}
spec.homepage = 'http://lotusrb.org'
Expand Down
2 changes: 1 addition & 1 deletion test/version_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

describe Lotus::Validations::VERSION do
it 'exposes version' do
Lotus::Validations::VERSION.must_equal '0.3.2'
Lotus::Validations::VERSION.must_equal '0.3.3'
end
end

0 comments on commit fefd9d6

Please sign in to comment.