Skip to content

Commit

Permalink
Version 1.0.0.rc
Browse files Browse the repository at this point in the history
  • Loading branch information
mshibuya committed Jul 18, 2016
1 parent 2653f0a commit 67af62a
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 7 deletions.
41 changes: 39 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,47 @@

## [Unreleased](https://github.com/sferik/rails_admin/tree/HEAD)

[Full Changelog](https://github.com/sferik/rails_admin/compare/v0.8.1...HEAD)
[Full Changelog](https://github.com/sferik/rails_admin/compare/v1.0.0.rc...HEAD)


## [1.0.0.rc](https://github.com/sferik/rails_admin/tree/v1.0.0.rc) - 2016-07-18

[Full Changelog](https://github.com/sferik/rails_admin/compare/v0.8.1...v1.0.0.rc)

### Added
- Rails 5 support
- PaperTrail 5 support([9c42783a](https://github.com/sferik/rails_admin/commit/9c42783aa65b704f4a5d467608c49b746c47b81b))
- Support for multiple configuration blocks([#1781](https://github.com/sferik/rails_admin/pull/1781), [#2670](https://github.com/sferik/rails_admin/pull/2670))
- Default association limit is now configurable([#2508](https://github.com/sferik/rails_admin/pull/2058))

### Changed
- Prefix kaminari bootstrap views with `ra-` to avoid name conflict([#2283](https://github.com/sferik/rails_admin/issues/2283), [#2651](https://github.com/sferik/rails_admin/pull/2651))
- Gravatar icon is now optional([#2570](https://github.com/sferik/rails_admin/pull/2570))
- Improve bootstrap-wysihtml5-rails support([#2650](https://github.com/sferik/rails_admin/pull/2650))
- Explicitly call the #t method on I18n([#2564](https://github.com/sferik/rails_admin/pull/2564))
- Improve dashboard performance by querying with id instead of updated_at([#2514](https://github.com/sferik/rails_admin/issues/2514), [#2551](https://github.com/sferik/rails_admin/pull/2551))
- Improve encoding support in CSV converter([#2508](https://github.com/sferik/rails_admin/pull/2508), [dca8911f](https://github.com/sferik/rails_admin/commit/dca8911f240ea11ebb186c33573188aa9e1b031d))
- Add SVG file extension to the image detection method([#2533](https://github.com/sferik/rails_admin/pull/2533))
- Update linear gradient syntax to make autoprefixer happy([#2531](https://github.com/sferik/rails_admin/pull/2531))
- Improve export layout ([#2505](https://github.com/sferik/rails_admin/pull/2505))

### Removed
- Remove safe_yaml dependency([#2397](https://github.com/sferik/rails_admin/pull/2397))
- Drop support for Ruby < 2.1.0

### Fixed
- Fixed Mongoid BSON object field ([#2495](https://github.com/sferik/rails_admin/issues/2495))
- Pagination did not work when showing all history([#2553](https://github.com/sferik/rails_admin/pull/2553))
- Make filter-box label clickable([#2573](https://github.com/sferik/rails_admin/pull/2573))
- Colorpicker form did not have the default css class `form-control`([#2571](https://github.com/sferik/rails_admin/pull/2571))
- Stop assuming locale en is available([#2155](https://github.com/sferik/rails_admin/issues/2155))
- Fix undefined method error with nested polymorphics([#1338](https://github.com/sferik/rails_admin/issues/1338), [#2110](https://github.com/sferik/rails_admin/pull/2110))
- Fix issue with nav does not check pjax config from an action([#2309](https://github.com/sferik/rails_admin/pull/2309))
- Model label should be pluralized with locale([#1983](https://github.com/sferik/rails_admin/pull/1983))
- Fix delocalize strftime_format for DateTime.strptime to support minus([#2547](https://github.com/sferik/rails_admin/pull/2547))
- Fix Syntax Error in removal of new nested entity([#2539](https://github.com/sferik/rails_admin/pull/2539))
- Fix momentjs translations for '%-d' format day of the month([#2540](https://github.com/sferik/rails_admin/pull/2540))
- Fix Mongoid BSON object field ([#2495](https://github.com/sferik/rails_admin/issues/2495))
- Make browser ignore validaitons of removed nested child models([#2443](https://github.com/sferik/rails_admin/issues/2443), [#2490](https://github.com/sferik/rails_admin/pull/2490))


## [0.8.1](https://github.com/sferik/rails_admin/tree/v0.8.1) - 2015-11-24
Expand Down
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,20 @@ RailsAdmin is a Rails engine that provides an easy-to-use interface for managing

## Installation

1. On your gemfile: `gem 'rails_admin'`
1. On your gemfile:
- For Rails 5 project:

```
gem 'remotipart', github: 'mshibuya/remotipart'
gem 'rails_admin', '>= 1.0.0.rc'
```

- For Rails 4 project:

```
gem 'rails_admin'
```

2. Run `bundle install`
3. Run `rails g rails_admin:install`
4. Provide a namespace for the routes when asked
Expand Down
8 changes: 4 additions & 4 deletions lib/rails_admin/version.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module RailsAdmin
class Version
MAJOR = 0
MINOR = 8
PATCH = 1
PRE = nil
MAJOR = 1
MINOR = 0
PATCH = 0
PRE = 'rc'

class << self
# @return [String]
Expand Down

0 comments on commit 67af62a

Please sign in to comment.