Skip to content

Commit 36bb4b9

Browse files
author
Mattia Roccoberton
committed
Bump to version 0.9.0
1 parent 75508f9 commit 36bb4b9

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
A compact and composable dashboard component for Ruby
44

5+
## 0.9.0
6+
7+
- feat: expose pagination total count
8+
- feat: handle params in pages
9+
- feat: support a setup method for pages
10+
511
## 0.8.0
612

713
- feat: new label_for support method (useful for translations)

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Please ⭐ if you like it.
1919

2020
## Install
2121

22-
- Add to your Gemfile: `gem 'tiny_admin', '~> 0.8'`
22+
- Add to your Gemfile: `gem 'tiny_admin', '~> 0.9'`
2323
- Mount the app in a route (check some examples with: Hanami, Rails, Roda and standalone in [extra](extra))
2424
+ in Rails, update _config/routes.rb_: `mount TinyAdmin::Router => '/admin'`
2525
- Configure the dashboard using `TinyAdmin.configure` and/or `TinyAdmin.configure_from_file` with a YAML config file (see [configuration](#configuration) below):
@@ -218,6 +218,8 @@ model: Post
218218

219219
#### Resource index options
220220

221+
> 📚 [Wiki Resource index page](https://github.com/blocknotes/tiny_admin/wiki/Resource-index) available
222+
221223
The Index hash supports the following options:
222224

223225
- `attributes` (Array): fields to expose in the resource list page;
@@ -257,6 +259,8 @@ Example:
257259

258260
#### Resource show options
259261

262+
> 📚 [Wiki Resource show page](https://github.com/blocknotes/tiny_admin/wiki/Resource-show) available
263+
260264
The Show hash supports the following options:
261265

262266
- `attributes` (Array): fields to expose in the resource details page.

lib/tiny_admin/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module TinyAdmin
4-
VERSION = '0.8.0'
4+
VERSION = '0.9.0'
55
end

0 commit comments

Comments
 (0)