Skip to content

Commit

Permalink
Bump v3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nepalez committed May 6, 2019
1 parent 4cea655 commit d004acf
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 2 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
---
language: ruby
sudo: false
cache: bundler
before_install: gem install bundler --no-ri --no-rdoc
bundler_args: --without benchmarks tools
script:
- bundle exec rake
- bundle exec rake spec
- bundle exec rubocop
rvm:
- 2.3.0
- 2.4.0
- 2.6.2
- ruby-head
matrix:
allow_failures:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [3.1.1] [2018-05-06]
- support `dry-initializer` v3+ (nepalez)

## [3.1.0] [2018-02-12]
- support `ActiveRecord::Relation` in models (nepalez)

Expand Down Expand Up @@ -46,3 +49,4 @@ First public release
[2.0.0]: https://github.com/nepalez/dry-initializer-rails/compare/v1.0.0...v2.0.0
[3.0.0]: https://github.com/nepalez/dry-initializer-rails/compare/v2.0.0...v3.0.0
[3.1.0]: https://github.com/nepalez/dry-initializer-rails/compare/v3.0.0...v3.1.0
[3.1.1]: https://github.com/nepalez/dry-initializer-rails/compare/v3.1.0...v3.1.1
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,12 @@

[![Gem Version](https://badge.fury.io/rb/dry-initializer-rails.svg)][gem]
[![Build Status](https://travis-ci.org/nepalez/dry-initializer-rails.svg?branch=master)][travis]
[![Dependency Status](https://gemnasium.com/nepalez/dry-initializer-rails.svg)][gemnasium]
[![Code Climate](https://codeclimate.com/github/nepalez/dry-initializer-rails/badges/gpa.svg)][codeclimate]
[![Test Coverage](https://codeclimate.com/github/nepalez/dry-initializer-rails/badges/coverage.svg)][coveralls]
[![Inline docs](http://inch-ci.org/github/nepalez/dry-initializer-rails.svg?branch=master)][inchpages]

[gem]: https://rubygems.org/gems/dry-initializer-rails
[travis]: https://travis-ci.org/nepalez/dry-initializer-rails
[gemnasium]: https://gemnasium.com/nepalez/dry-initializer-rails
[codeclimate]: https://codeclimate.com/github/nepalez/dry-initializer-rails
[coveralls]: https://coveralls.io/r/nepalez/dry-initializer-rails
[inchpages]: http://inch-ci.org/github/nepalez/dry-initializer-rails
Expand Down
4 changes: 2 additions & 2 deletions dry-initializer-rails.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |gem|
gem.name = "dry-initializer-rails"
gem.version = "3.1.0"
gem.version = "3.1.1"
gem.author = ["Vladimir Kochnev (marshall-lee)", "Andrew Kozin (nepalez)"]
gem.email = ["[email protected]"]
gem.homepage = "https://github.com/nepalez/dry-initializer-rails"
Expand All @@ -14,7 +14,7 @@ Gem::Specification.new do |gem|
gem.required_ruby_version = ">= 2.3"

gem.add_runtime_dependency "rails", "> 3.0"
gem.add_runtime_dependency "dry-initializer", "~> 2.4"
gem.add_runtime_dependency "dry-initializer", ">= 2.4", "< 4"

gem.add_development_dependency "rspec", "~> 3.0"
gem.add_development_dependency "rake", "> 10.0"
Expand Down

0 comments on commit d004acf

Please sign in to comment.