From de86b508341342347f39f0b95a48eb9716b43e11 Mon Sep 17 00:00:00 2001 From: Grayson Wright Date: Wed, 11 Nov 2015 23:30:59 -0800 Subject: [PATCH] Release Administrate version 0.1.1 - Update gem version - Update README with recommended optimistic versioning for bundler - Update README with warning about Administrate's pre-1.0 status - Update CHANGELOG to fill in missing PR references - sort CHANGELOG entries according to change type Changes: ``` * [#191] [CHANGE] Improve API for specifying how resources are displayed across the dashboard. * Models are now displayed with a sensible default - (e.g. "User #2") * Users can define `ModelDashboard#display_resource(resource)` for custom display behavior * Users who have generated views for the following field types may need to update them to take advantage of the new API: * HasOne * HasMany * Polymorphic * BelongsTo * [#223] [FEATURE] Translation: Vietnamese * [#161] [FEATURE] Translation: Mandarin Chinese * [#196] [FEATURE] Translation: Taiwanese Mandarin * [#142] [FEATURE] Translation: Brazilian Portuguese * [#171] [FEATURE] Translation: Polish * [#153] [FEATURE] Translation: Russian * [#148] [FEATURE] Translation: French * [#147] [FEATURE] Translation: German * [#154] [FEATURE] Translation: Spanish * [#126] [UI] Preserve whitespace when rendering text fields * [#194] [BUGFIX] Don't clear out datetime values in form fields * [#193] [BUGFIX] Don't assume that unrecognized db column types are searchable * [#124] [BUGFIX] Better detection of application models * [#156] [COMPAT] Include missing `sass-rails` dependency in gemspec * [#174] [COMPAT] Make several missing dependencies explicit. * [#144] [COMPAT] Update repository structure so Bundler can pull the gem from github. (e.g. `gem "administrate", github: "thoughtbot/administrate"`) * [#166] [COMPAT] Use ANSI SQL standards for case-insensitive search * [#120] [DOC] Add Rubygems version badge to README * [#165] [DOC] Add CircleCI badge to README * [#119] [DOC] Add CodeClimate badge to README ``` --- CHANGELOG.md | 22 ++++++++++++---------- Gemfile.lock | 2 +- README.md | 5 ++++- lib/administrate/version.rb | 2 +- 4 files changed, 18 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3493c0a912..c2c8c609a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,8 @@ ### Upcoming Release +### 0.1.1 (November 12, 2015) + * [#191] [CHANGE] Improve API for specifying how resources are displayed across the dashboard. * Models are now displayed with a sensible default - (e.g. "User #2") @@ -25,7 +27,7 @@ may need to update them to take advantage of the new API: * HasOne * HasMany - * PolyMorphic + * Polymorphic * BelongsTo * [#223] [FEATURE] Translation: Vietnamese * [#161] [FEATURE] Translation: Mandarin Chinese @@ -35,19 +37,19 @@ * [#153] [FEATURE] Translation: Russian * [#148] [FEATURE] Translation: French * [#147] [FEATURE] Translation: German -* [#193] [BUGFIX] Don't assume that unrecognized db column types are searchable +* [#154] [FEATURE] Translation: Spanish +* [#126] [UI] Preserve whitespace when rendering text fields * [#194] [BUGFIX] Don't clear out datetime values in form fields +* [#193] [BUGFIX] Don't assume that unrecognized db column types are searchable +* [#124] [BUGFIX] Better detection of application models * [#156] [COMPAT] Include missing `sass-rails` dependency in gemspec * [#174] [COMPAT] Make several missing dependencies explicit. -* [COMPAT] Update repository structure so Bundler can pull the gem from github. +* [#144] [COMPAT] Update repository structure so Bundler can pull the gem from github. (e.g. `gem "administrate", github: "thoughtbot/administrate"`) -* [COMPAT] Use ANSI SQL standards for case-insensitive search -* [DOC] Add Rubygems version badge to README -* [#124] [BUGFIX] Better detection of application models -* [DOC] Add CircleCI badge to README -* [DOC] Add CodeClimate badge to README -* [UI] Preserve whitespace when rendering text fields -* [#154] [FEATURE] Add Spanish translation for i18n +* [#166] [COMPAT] Use ANSI SQL standards for case-insensitive search +* [#120] [DOC] Add Rubygems version badge to README +* [#165] [DOC] Add CircleCI badge to README +* [#119] [DOC] Add CodeClimate badge to README ### 0.1.0 (October 30, 2015) diff --git a/Gemfile.lock b/Gemfile.lock index 214769cb69..61a145a180 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - administrate (0.1.0) + administrate (0.1.1) autoprefixer-rails (~> 6.0) datetime_picker_rails (~> 0.0.5) inline_svg (~> 0.6) diff --git a/README.md b/README.md index 20f58723e8..5df11213fb 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,9 @@ A Rails engine that helps you put together a super-flexible admin dashboard. [Try the demo][demo]. +> Note: Administrate is still pre-1.0, +> and there may be occasional breaking changes to the API. + ![administrate](https://images.thoughtbot.com/announcing-administrate/DdP2CQfnSE23PI8AAnDc_Administrate.png) ## Guiding Principles @@ -33,7 +36,7 @@ Add Administrate to your Gemfile: ```ruby # Gemfile -gem "administrate" +gem "administrate", "~> 0.1.1" ``` Re-bundle, then run the installer: diff --git a/lib/administrate/version.rb b/lib/administrate/version.rb index 3d79c12d81..96306d013a 100644 --- a/lib/administrate/version.rb +++ b/lib/administrate/version.rb @@ -1,3 +1,3 @@ module Administrate - VERSION = "0.1.0" + VERSION = "0.1.1" end