diff --git a/.ruby-version b/.ruby-version new file mode 100644 index 0000000..097a15a --- /dev/null +++ b/.ruby-version @@ -0,0 +1 @@ +2.6.2 diff --git a/CHANGELOG.md b/CHANGELOG.md index 91e5a4b..99734d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # AuxiliaryRails Changelog +## v0.1.5 + +* Fix Gemfile.lock + +## v0.1.4 + +* Rename CLI comman `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 diff --git a/Gemfile.lock b/Gemfile.lock index ad1e925..c112ec2 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - auxiliary_rails (0.1.3) + auxiliary_rails (0.1.5) thor GEM diff --git a/lib/auxiliary_rails/version.rb b/lib/auxiliary_rails/version.rb index f81ec2c..00cd729 100644 --- a/lib/auxiliary_rails/version.rb +++ b/lib/auxiliary_rails/version.rb @@ -1,3 +1,3 @@ module AuxiliaryRails - VERSION = '0.1.4'.freeze + VERSION = '0.1.5'.freeze end