diff --git a/.ruby-version b/.ruby-version index 097a15a..ec1cf33 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -2.6.2 +2.6.3 diff --git a/CHANGELOG.md b/CHANGELOG.md index 99734d2..b57d591 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,19 +1,24 @@ # AuxiliaryRails Changelog +## v0.1.6 + +* API Resource generator +* Command Object + ## v0.1.5 * Fix Gemfile.lock ## v0.1.4 -* Rename CLI comman `create_rails_app` to `new` -* Code style updates in auxiliary_rails.gemspec +* Rename CLI command `create_rails_app` to `new` +* Code style updates in `auxiliary_rails.gemspec` * Fix order of gems in Rails template, rename template ## v0.1.3 * Upgrate `rubocop` gem and its configs -* `rubocop-rspec` and `rubocop-performance` gem itegration +* `rubocop-rspec` and `rubocop-performance` gem iteration * Added basic Rails application template * CLI with `create_rails_app` command diff --git a/Gemfile.lock b/Gemfile.lock index 371ae34..8517c0b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - auxiliary_rails (0.1.5) + auxiliary_rails (0.1.6) thor GEM @@ -170,4 +170,4 @@ DEPENDENCIES rubocop-rspec BUNDLED WITH - 2.0.1 + 2.0.2 diff --git a/lib/auxiliary_rails/version.rb b/lib/auxiliary_rails/version.rb index 00cd729..c99565c 100644 --- a/lib/auxiliary_rails/version.rb +++ b/lib/auxiliary_rails/version.rb @@ -1,3 +1,3 @@ module AuxiliaryRails - VERSION = '0.1.5'.freeze + VERSION = '0.1.6'.freeze end