Unverified Commit 4a84bb86 authored by Nick Charlton's avatar Nick Charlton
Browse files

Release version 0.10.0.

Showing with 76 additions and 3 deletions
+76 -3
...@@ -16,6 +16,28 @@ ...@@ -16,6 +16,28 @@
## Changes ## 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) ### 0.9.0 (February 17, 2018)
* [COMPAT] [#1098] Update all the dependent gems. * [COMPAT] [#1098] Update all the dependent gems.
......
PATH PATH
remote: . remote: .
specs: specs:
administrate (0.9.0) administrate (0.10.0)
actionpack (>= 4.2, < 6.0) actionpack (>= 4.2, < 6.0)
actionview (>= 4.2, < 6.0) actionview (>= 4.2, < 6.0)
activerecord (>= 4.2, < 6.0) activerecord (>= 4.2, < 6.0)
...@@ -118,7 +118,7 @@ GEM ...@@ -118,7 +118,7 @@ GEM
parser (>= 2.2.3.0) parser (>= 2.2.3.0)
rainbow (~> 2.2) rainbow (~> 2.2)
terminal-table (>= 1.5.1) terminal-table (>= 1.5.1)
jquery-rails (4.3.1) jquery-rails (4.3.3)
rails-dom-testing (>= 1, < 3) rails-dom-testing (>= 1, < 3)
railties (>= 4.2.0) railties (>= 4.2.0)
thor (>= 0.14, < 2.0) thor (>= 0.14, < 2.0)
......
...@@ -35,6 +35,7 @@ group :test do ...@@ -35,6 +35,7 @@ group :test do
gem "shoulda-matchers" gem "shoulda-matchers"
gem "timecop" gem "timecop"
gem "webmock" gem "webmock"
gem "pundit"
end end
group :staging, :production do group :staging, :production do
......
...@@ -35,6 +35,7 @@ group :test do ...@@ -35,6 +35,7 @@ group :test do
gem "shoulda-matchers" gem "shoulda-matchers"
gem "timecop" gem "timecop"
gem "webmock" gem "webmock"
gem "pundit"
end end
group :staging, :production do group :staging, :production do
......
...@@ -35,6 +35,7 @@ group :test do ...@@ -35,6 +35,7 @@ group :test do
gem "shoulda-matchers" gem "shoulda-matchers"
gem "timecop" gem "timecop"
gem "webmock" gem "webmock"
gem "pundit"
end end
group :staging, :production do group :staging, :production do
......
# 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: "../"
...@@ -33,6 +33,7 @@ group :test do ...@@ -33,6 +33,7 @@ group :test do
gem "shoulda-matchers" gem "shoulda-matchers"
gem "timecop" gem "timecop"
gem "webmock" gem "webmock"
gem "pundit"
end end
group :staging, :production do group :staging, :production do
......
module Administrate module Administrate
VERSION = "0.9.0".freeze VERSION = "0.10.0".freeze
end end
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment