diff --git a/CHANGELOG.md b/CHANGELOG.md index 54ff54147d..70db56d916 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,8 +16,26 @@ ## Changes -### Upcoming Release - +### 0.4.0 (Mar 03, 2017) + +* [DOC] Use Kaminari syntax in controller's comment hint. +* [#747] [CHANGE] Fix a bug where `administrate:views` was creating the wrong + paths. +* [#739] [#743] [BUGFIX] Dependent destroy demo app models. +* [CHANGE] Remove boilerplate references to staging/production. +* [CHANGE] Improve the `bin/` commands. +* [#733] [CHANGE] Switch `administrate-field-image` to use the new release. +* [#704] [I18n] Fix a typo on pt-BR translation for polymorphic. +* [#730] [FEATURE] Hide the Search Bar when no attributes are searchable. +* [#732] [I18n] Improve Japanese locales. +* [#729] [FEATURE] Allow `primary_key` option on relationships instead of + hardcoding `id`. +* [#728] [DOCS] Improve the docs around authentication. +* [#727] [FEATURE] Add a link to show resource from the collection table. +* [#726] [BUGFIX] Check for PhantomJS in the setup script. +* [#721] [CHANGE] Use `count(:all)` for associations in HasMany fields. +* [#683] [CHANGE] Add Bourbon as an explicit dependency. +* [#713] [CHANGE] Avoid writing to `routes.rb` when no models exist. * [#704] [I18n] Fix word on pt-BR translation ### 0.3.0 (Oct 28, 2016) diff --git a/Gemfile.lock b/Gemfile.lock index 9699c2b5ef..ac755bed99 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - administrate (0.3.0) + administrate (0.4.0) autoprefixer-rails (~> 6.0) bourbon (~> 4.2) datetime_picker_rails (~> 0.0.7) @@ -65,7 +65,7 @@ GEM rake thor (>= 0.14.0) arel (6.0.3) - autoprefixer-rails (6.5.1.1) + autoprefixer-rails (6.6.1) execjs awesome_print (1.6.1) binding_of_caller (0.7.2) @@ -135,7 +135,7 @@ GEM i18n term-ansicolor (>= 1.3.2) terminal-table (>= 1.5.1) - jquery-rails (4.2.1) + jquery-rails (4.2.2) rails-dom-testing (>= 1, < 3) railties (>= 4.2.0) thor (>= 0.14, < 2.0) @@ -159,7 +159,7 @@ GEM mime-types-data (3.2016.0521) mini_portile2 (2.1.0) minitest (5.9.0) - momentjs-rails (2.15.1) + momentjs-rails (2.17.1) railties (>= 3.1) neat (1.8.0) sass (>= 3.3) @@ -236,7 +236,7 @@ GEM sprockets (>= 2.8, < 4.0) sprockets-rails (>= 2.0, < 4.0) tilt (>= 1.1, < 3) - selectize-rails (0.12.3) + selectize-rails (0.12.4) shoulda-matchers (2.8.0) activesupport (>= 3.0.0) slop (3.6.0) @@ -317,4 +317,4 @@ DEPENDENCIES webmock BUNDLED WITH - 1.13.6 + 1.13.7 diff --git a/lib/administrate/version.rb b/lib/administrate/version.rb index 106068de6b..9c63ea0f55 100644 --- a/lib/administrate/version.rb +++ b/lib/administrate/version.rb @@ -1,3 +1,3 @@ module Administrate - VERSION = "0.3.0".freeze + VERSION = "0.4.0".freeze end