Skip to content

Commit

Permalink
Release version 0.1.4
Browse files Browse the repository at this point in the history
Problem:

v0.1.3 contained a breaking change
that made the first-run generators fail.

Solution:

v0.1.4 fixes the issue by deprecating the `DashboardManifest`.
  • Loading branch information
c-lliope committed Feb 21, 2016
1 parent 12699c9 commit 7c0d1f7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@

### Upcoming Release

### 0.1.4 (February 20, 2016)

* [#464] [CHANGE] Replace the DashboardManifest with explicit Rails routes.
* Run `rails generate administrate:routes` to generate the default routes.

Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
administrate (0.1.3)
administrate (0.1.4)
autoprefixer-rails (~> 6.0)
datetime_picker_rails (~> 0.0.7)
jquery-rails (~> 4.0)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Add Administrate to your Gemfile:

```ruby
# Gemfile
gem "administrate", "~> 0.1.3"
gem "administrate", "~> 0.1.4"
```

Re-bundle, then run the installer:
Expand Down
2 changes: 1 addition & 1 deletion lib/administrate/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Administrate
VERSION = "0.1.3"
VERSION = "0.1.4".freeze
end

0 comments on commit 7c0d1f7

Please sign in to comment.