Skip to content

Commit

Permalink
Release version 0.10.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
nickcharlton committed Apr 20, 2018
1 parent acaad1e commit 4a84bb8
Show file tree
Hide file tree
Showing 8 changed files with 76 additions and 3 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,28 @@

## Changes

### 0.10.0 (April 20, 2018)

* [BUGFIX] [#1121] Fix a bug where polymorphic fields could throw an exception.
* [BUGFIX] [#1129] Include time for date_time field in index.
* [i18n] [#1132] Add missing Russian locale error message.
* [DOC] [#1131] Document that numbers are searchable.
* [DOC] [#1145] Add `.byebug_history` and `gemfiles/.bundle/` to .gitignore.
* [COMPAT] [#1148] Support Rails 5.2.
* [DOC] [#1119] Add link to Authorization documentation.
* [BUGFIX] [#1107] Exclude routes with modules, but no namespace.
* [i18n] [#1117] Add translation for Albanian language.
* [i18n] [#1115] Translate error message to Japanese.
* [DOC] [#1106] Update Customizing Views docs with sidebar generator.
* [FEATURE] [#1005] Add ability to search through association fields.
* [FEATURE] [#1059] Use associated_class to render belongs_to links.
* [FEATURE] [#961] Show errors when has_many restrict_with_error.
* [FEATURE] [#1104] Add `scope` option to Field::BelongsTo.
* [BUGFIX] [#1070] Use application timezone by default for DateTime fields.
* [FEATURE] [#998] Add a password field type.
* [FEATURE] [#903] Added Time Field.
* [COMPAT] [#1103] Use cross-DB way to cast search queries to strings.

### 0.9.0 (February 17, 2018)

* [COMPAT] [#1098] Update all the dependent gems.
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
administrate (0.9.0)
administrate (0.10.0)
actionpack (>= 4.2, < 6.0)
actionview (>= 4.2, < 6.0)
activerecord (>= 4.2, < 6.0)
Expand Down Expand Up @@ -118,7 +118,7 @@ GEM
parser (>= 2.2.3.0)
rainbow (~> 2.2)
terminal-table (>= 1.5.1)
jquery-rails (4.3.1)
jquery-rails (4.3.3)
rails-dom-testing (>= 1, < 3)
railties (>= 4.2.0)
thor (>= 0.14, < 2.0)
Expand Down
1 change: 1 addition & 0 deletions gemfiles/rails42.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ group :test do
gem "shoulda-matchers"
gem "timecop"
gem "webmock"
gem "pundit"
end

group :staging, :production do
Expand Down
1 change: 1 addition & 0 deletions gemfiles/rails50.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ group :test do
gem "shoulda-matchers"
gem "timecop"
gem "webmock"
gem "pundit"
end

group :staging, :production do
Expand Down
1 change: 1 addition & 0 deletions gemfiles/rails51.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ group :test do
gem "shoulda-matchers"
gem "timecop"
gem "webmock"
gem "pundit"
end

group :staging, :production do
Expand Down
47 changes: 47 additions & 0 deletions gemfiles/rails52.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "administrate-field-image"
gem "autoprefixer-rails"
gem "faker"
gem "globalid"
gem "pg", "0.21.0"
gem "redcarpet"
gem "sentry-raven"
gem "unicorn"
gem "actionpack", "~> 5.2.0"
gem "actionview", "~> 5.2.0"
gem "activerecord", "~> 5.2.0"

group :development, :test do
gem "appraisal"
gem "awesome_print"
gem "bundler-audit", require: false
gem "byebug"
gem "dotenv-rails"
gem "factory_bot_rails"
gem "i18n-tasks"
gem "pry-rails"
gem "rspec-rails"
end

group :test do
gem "ammeter"
gem "database_cleaner"
gem "formulaic"
gem "launchy"
gem "poltergeist"
gem "shoulda-matchers"
gem "timecop"
gem "webmock"
gem "pundit"
end

group :staging, :production do
gem "rack-timeout"
gem "rails_stdout_logging"
gem "uglifier"
end

gemspec path: "../"
1 change: 1 addition & 0 deletions gemfiles/sass_3_4.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ group :test do
gem "shoulda-matchers"
gem "timecop"
gem "webmock"
gem "pundit"
end

group :staging, :production do
Expand Down
2 changes: 1 addition & 1 deletion lib/administrate/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Administrate
VERSION = "0.9.0".freeze
VERSION = "0.10.0".freeze
end

0 comments on commit 4a84bb8

Please sign in to comment.