Skip to content

Commit c3311ff

Browse files
committed
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 - add `[I18n]` category to CHANGELOG - 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
1 parent fcd3fc7 commit c3311ff

File tree

4 files changed

+27
-21
lines changed

4 files changed

+27
-21
lines changed

CHANGELOG.md

Lines changed: 21 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,15 @@
1010
* `[BUGFIX]`: Fixes a bug with a non-breaking change.
1111
* `[COMPAT]`: Compatibility improvements - changes to make Administrate more
1212
compatible with different dependency versions.
13+
* `[I18n]`: Internationalization. Changes to translations or localizations.
1314
* `[DOC]`: Documentation changes. No changes to the library's behavior.
1415

1516
## Changes
1617

1718
### Upcoming Release
1819

20+
### 0.1.1 (November 12, 2015)
21+
1922
* [#191] [CHANGE] Improve API for specifying how resources are displayed
2023
across the dashboard.
2124
* Models are now displayed with a sensible default - (e.g. "User #2")
@@ -25,29 +28,29 @@
2528
may need to update them to take advantage of the new API:
2629
* HasOne
2730
* HasMany
28-
* PolyMorphic
31+
* Polymorphic
2932
* BelongsTo
30-
* [#223] [FEATURE] Translation: Vietnamese
31-
* [#161] [FEATURE] Translation: Mandarin Chinese
32-
* [#196] [FEATURE] Translation: Taiwanese Mandarin
33-
* [#142] [FEATURE] Translation: Brazilian Portuguese
34-
* [#171] [FEATURE] Translation: Polish
35-
* [#153] [FEATURE] Translation: Russian
36-
* [#148] [FEATURE] Translation: French
37-
* [#147] [FEATURE] Translation: German
38-
* [#193] [BUGFIX] Don't assume that unrecognized db column types are searchable
33+
* [#126] [UI] Preserve whitespace when rendering text fields
3934
* [#194] [BUGFIX] Don't clear out datetime values in form fields
35+
* [#193] [BUGFIX] Don't assume that unrecognized db column types are searchable
36+
* [#124] [BUGFIX] Better detection of application models
4037
* [#156] [COMPAT] Include missing `sass-rails` dependency in gemspec
4138
* [#174] [COMPAT] Make several missing dependencies explicit.
42-
* [COMPAT] Update repository structure so Bundler can pull the gem from github.
39+
* [#144] [COMPAT] Update repository structure so Bundler can pull the gem from github.
4340
(e.g. `gem "administrate", github: "thoughtbot/administrate"`)
44-
* [COMPAT] Use ANSI SQL standards for case-insensitive search
45-
* [DOC] Add Rubygems version badge to README
46-
* [#124] [BUGFIX] Better detection of application models
47-
* [DOC] Add CircleCI badge to README
48-
* [DOC] Add CodeClimate badge to README
49-
* [UI] Preserve whitespace when rendering text fields
50-
* [#154] [FEATURE] Add Spanish translation for i18n
41+
* [#166] [COMPAT] Use ANSI SQL standards for case-insensitive search
42+
* [#223] [I18n] Vietnamese
43+
* [#161] [I18n] Mandarin Chinese
44+
* [#196] [I18n] Taiwanese Mandarin
45+
* [#142] [I18n] Brazilian Portuguese
46+
* [#171] [I18n] Polish
47+
* [#153] [I18n] Russian
48+
* [#148] [I18n] French
49+
* [#147] [I18n] German
50+
* [#154] [I18n] Spanish
51+
* [#120] [DOC] Add Rubygems version badge to README
52+
* [#165] [DOC] Add CircleCI badge to README
53+
* [#119] [DOC] Add CodeClimate badge to README
5154

5255
### 0.1.0 (October 30, 2015)
5356

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
administrate (0.1.0)
4+
administrate (0.1.1)
55
autoprefixer-rails (~> 6.0)
66
datetime_picker_rails (~> 0.0.5)
77
inline_svg (~> 0.6)

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
A Rails engine that helps you put together a super-flexible admin dashboard.
88
[Try the demo][demo].
99

10+
> Note: Administrate is still pre-1.0,
11+
> and there may be occasional breaking changes to the API.
12+
1013
![administrate](https://images.thoughtbot.com/announcing-administrate/DdP2CQfnSE23PI8AAnDc_Administrate.png)
1114

1215
## Guiding Principles
@@ -33,7 +36,7 @@ Add Administrate to your Gemfile:
3336

3437
```ruby
3538
# Gemfile
36-
gem "administrate"
39+
gem "administrate", "~> 0.1.1"
3740
```
3841

3942
Re-bundle, then run the installer:

lib/administrate/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Administrate
2-
VERSION = "0.1.0"
2+
VERSION = "0.1.1"
33
end

0 commit comments

Comments
 (0)