From 21db0cbdec18f501f0ac7a0ab5c14557d26f873e Mon Sep 17 00:00:00 2001 From: Dmitry Babenko Date: Fri, 6 Mar 2020 19:16:37 +0200 Subject: [PATCH] Version 0.3.0 --- CHANGELOG.md | 9 +++++++-- Gemfile.lock | 2 +- lib/auxiliary_rails/version.rb | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 18b3279..9d1d634 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,17 +1,22 @@ # AuxiliaryRails Changelog -## [Unreleased] +## v0.3.0 ### Added +- Form Objects +- Query Objects +- Performable concern +- YARD docs and link to API documentation - Commands usage examples - Commands: `arguments` helper to get hash of all `param`s ### Changed +- Namespace `Application` instead of `Abstract` prefixes for classes - Commands migrate from `#call` to `#perform` method - Commands: force validations ### Removed -- RuboCop generator, replaces with `rubocop-ergoserv` gem +- RuboCop generator replaced with `rubocop-ergoserv` gem ## v0.2.0 diff --git a/Gemfile.lock b/Gemfile.lock index c35f525..80bcd95 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - auxiliary_rails (0.2.0) + auxiliary_rails (0.3.0) dry-core dry-initializer dry-initializer-rails diff --git a/lib/auxiliary_rails/version.rb b/lib/auxiliary_rails/version.rb index 762f14b..8c98419 100644 --- a/lib/auxiliary_rails/version.rb +++ b/lib/auxiliary_rails/version.rb @@ -1,3 +1,3 @@ module AuxiliaryRails - VERSION = '0.2.0'.freeze + VERSION = '0.3.0'.freeze end