Skip to content

Commit 7b505ed

Browse files
committed
Release version 0.4.0.
1 parent fe1c03b commit 7b505ed

File tree

4 files changed

+49
-4
lines changed

4 files changed

+49
-4
lines changed

CHANGELOG.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,51 @@
1616

1717
## Changes
1818

19+
### 0.5.0 (Mar 27, 2017)
20+
21+
* [i18n] [#786] Backfill the missing translations (some from Google Translate).
22+
* [CHANGE] [#795] Loosen and update jquery-rails.
23+
* [CHANGE] [#792] Content with .preserve-whitespace should wrap.
24+
* [BUGFIX] [#611] Javascript: Fix row-click handler.
25+
* [CHANGE] [#569] Loosen normalize-rails required version.
26+
* [DOC] [#532] Add a short section about how to report vulnerabilities.
27+
* [CHANGE] [#784] Drop refills as a dependency.
28+
* [CHANGE] [#784] Change bourbon to be at least beta.6.
29+
* [FEATURE] [#505] let routes generator indent all routes.
30+
* [FEATURE] [#746] Add suffix/postfix option to number field.
31+
* [DOC] [#508] Add example of how to use a custom field.
32+
* [i18n] [#602] Adding Portuguese locale.
33+
* [i18n] [#603] Update administrate.pt-BR.yml.
34+
* [CHANGE] [#634] Add and set PLURAL_MANY_COUNT to 2.1.
35+
* [DOC] [#684] Add instructions on how to add dashboards.
36+
* [FEATURE] [#780] Add Sentry for the prototype app.
37+
* [i18n] [#772] Merge the existing translations before testing.
38+
* [DOC] [#783] Change README to use `0.4.0`.
39+
* [DOC] [#778] Clarify the version requirements.
40+
* [DOC] [#779] Update .rubocop.yml to follow thoughtbot/guides.
41+
* [DOC] [#781] Update readme screenshot.
42+
* [BUGFIX] [#559] Fix #558 : Wrong constant name guess.
43+
* [DOC] [#769] Mention guides in doc/ subdirectory.
44+
* [DOC] [#469] Path to custom attribute type updated in docs.
45+
* [CHANGE] [#774] Update Kaminari `~> 0.16` -> `>= 1.0`.
46+
* [DOC] [#776] Include docs in gem (via gemspec file listing).
47+
* [DOC] [#540] example on how to use custom file types.
48+
* [CHANGE] [#767] Add auto-prefixer.
49+
* [i18n] [#344] Add missing translations on edit/new/show actions.
50+
* [i18n] [#344] Add some action translations to administrate.en.
51+
* [i18n] [#344] Add some action translations to administrate.pt-BR.
52+
* [DOC] [#457] Document how to change resource labels in collections.
53+
* [FEATURE] [#466] Allow preloading has_many records.
54+
* [i18n] [#764] Add Korean i18n.
55+
* [FEATURE] [#597] Allow to limit route actions.
56+
* [BUGFIX] [#687] Fix broken sort arrow svg in the resource table.
57+
* [DOC] [#627] add doc for customizing admin dashboard layouts.
58+
* [BUGFIX] [#642] Add missing multiplier option for number fields.
59+
* [BUGFIX] [#465] Inline controller's `permitted_attributes` method.
60+
* [FEATURE] [#760] Add refills and refill-styled flashes.
61+
* [FEATURE] [#736] Paginate has_many show view.
62+
* [CHANGE] [#759] Update instances of bourbon to 5.0.0.beta.7; sass to ~>3.4.
63+
1964
### 0.4.0 (Mar 03, 2017)
2065

2166
* [DOC] Use Kaminari syntax in controller's comment hint.

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.4.0)
4+
administrate (0.5.0)
55
autoprefixer-rails (~> 6.0)
66
bourbon (>= 5.0.0.beta.6)
77
datetime_picker_rails (~> 0.0.7)

administrate.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ require "administrate/version"
55
Gem::Specification.new do |s|
66
s.name = "administrate"
77
s.version = Administrate::VERSION
8-
s.authors = ["Grayson Wright"]
9-
s.email = ["[email protected]"]
8+
s.authors = ["Nick Charlton", "Grayson Wright"]
9+
1010
s.homepage = "https://administrate-prototype.herokuapp.com/"
1111
s.summary = "A Rails engine for creating super-flexible admin dashboards"
1212
s.license = "MIT"

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.4.0".freeze
2+
VERSION = "0.5.0".freeze
33
end

0 commit comments

Comments
 (0)