Skip to content

Commit

Permalink
Version 3.0.0 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
mshibuya committed Mar 21, 2022
1 parent bf29870 commit f5cc427
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,16 @@

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

[Full Changelog](https://github.com/railsadminteam/rails_admin/compare/v3.0.0.rc4...HEAD)
[Full Changelog](https://github.com/railsadminteam/rails_admin/compare/v3.0.0...HEAD)

## [3.0.0](https://github.com/railsadminteam/rails_admin/tree/v3.0.0) - 2022-03-21

[Full Changelog](https://github.com/railsadminteam/rails_admin/compare/v3.0.0.rc4...v3.0.0)

### Fixed

- Fix table sorting not working ([83a0c88](https://github.com/railsadminteam/rails_admin/commit/83a0c889f1de38a0b24c412b0f0f7484add86b29), [#3497](https://github.com/railsadminteam/rails_admin/issues/3497))
- Fix reset button by the query box not working ([4a583e9](https://github.com/railsadminteam/rails_admin/commit/4a583e924c5bef6bfc46d6a49ab751c2323ba23e))

## [3.0.0.rc4](https://github.com/railsadminteam/rails_admin/tree/v3.0.0.rc4) - 2022-03-13

Expand Down
8 changes: 1 addition & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,6 @@

RailsAdmin is a Rails engine that provides an easy-to-use interface for managing your data.

## Announcements

### [Action required] Security issue

**RailsAdmin 2.0.1, 2.0.0 and up to 1.4.2 have been reported to have XSS vulnerability.** We strongly recommend that you upgrade RailsAdmin to 2.0.2 (and higher) or 1.4.3 as soon as possible, if you are on those versions. See [d72090ec](https://github.com/railsadminteam/rails_admin/commit/d72090ec6a07c3b9b7b48ab50f3d405f91ff4375) for the detail.

## Getting started

- Check out [the docs][docs].
Expand All @@ -45,7 +39,7 @@ RailsAdmin is a Rails engine that provides an easy-to-use interface for managing

## Installation

1. On your gemfile: `gem 'rails_admin', ['>= 3.0.0.rc4', '< 4']`
1. On your gemfile: `gem 'rails_admin', '~> 3.0'`
2. Run `bundle install`
3. Run `rails g rails_admin:install`
4. Provide a namespace for the routes when asked
Expand Down
2 changes: 1 addition & 1 deletion lib/rails_admin/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ class Version
MAJOR = 3
MINOR = 0
PATCH = 0
PRE = 'rc4'.freeze
PRE = nil

class << self
# @return [String]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rails_admin",
"version": "3.0.0-rc4",
"version": "3.0.0",
"description": "RailsAdmin is a Rails engine that provides an easy-to-use interface for managing your data.",
"homepage": "https://github.com/railsadminteam/rails_admin",
"license": "MIT",
Expand Down

0 comments on commit f5cc427

Please sign in to comment.