Skip to content

Commit

Permalink
Version 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mshibuya committed May 31, 2017
1 parent f521633 commit 3d12fd1
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,24 @@

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

[Full Changelog](https://github.com/sferik/rails_admin/compare/v1.1.1...HEAD)
[Full Changelog](https://github.com/sferik/rails_admin/compare/v1.2.0...HEAD)


## [1.2.0](https://github.com/sferik/rails_admin/tree/v1.2.0) - 2017-05-31

[Full Changelog](https://github.com/sferik/rails_admin/compare/v1.1.1...v1.2.0)

#### Added
- Add ILIKE support for PostgreSQL/PostGIS adapter, multibyte downcase for other adapters([#2766](https://github.com/sferik/rails_admin/pull/2766))
- Support for UUID query([#2766](https://github.com/sferik/rails_admin/pull/2766))
- Support for Haml 5([#2840](https://github.com/sferik/rails_admin/pull/2840), [#2870](https://github.com/sferik/rails_admin/pull/2870), [#2877](https://github.com/sferik/rails_admin/pull/2877))
- Add instance option to append a CSS class for rows([#2860](https://github.com/sferik/rails_admin/pull/2860))

### Fixed
- Remove usage of alias_method_chain, deprecated in Rails 5.0([#2864](https://github.com/sferik/rails_admin/pull/2864))
- Load models from eager_load, not autoload_paths([#2771](https://github.com/sferik/rails_admin/pull/2771))
- jQuery 3.0 doesn't have size(), use length instead([#2841](https://github.com/sferik/rails_admin/pull/2841))
- Prepopulation of the new form didn't work with namespaced models([#2701](https://github.com/sferik/rails_admin/pull/2701))


## [1.1.1](https://github.com/sferik/rails_admin/tree/v1.1.1) - 2016-12-25
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ This problem was reported by SourceClear, Inc.

## Installation

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

class << self
Expand Down

0 comments on commit 3d12fd1

Please sign in to comment.