File tree Expand file tree Collapse file tree 3 files changed +14
-8
lines changed
Expand file tree Collapse file tree 3 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 22
33A compact and composable dashboard component for Ruby
44
5+ ## 0.4.0
6+
7+ - feat: introduce a Support class for attributes' formatters
8+ - feat: improve routing method
9+ - feat: internal improvements
10+
511## 0.3.0
612
713- feat: pagination improvements
@@ -10,16 +16,16 @@ A compact and composable dashboard component for Ruby
1016
1117## 0.2.1
1218
13- - fix: correct missing password hash;
19+ - fix: correct missing password hash
1420- fix: correct pages count for pagination in index action
1521
1622## 0.2.0
1723
18- - feat: improve layout structure;
19- - feat: improve routing methods;
20- - feat: load authentication options from config;
21- - deps: add tilt dependency and update gemspec dependencies versions;
22- - docs: improve documentation and add more usage examples.
24+ - feat: improve layout structure
25+ - feat: improve routing methods
26+ - feat: load authentication options from config
27+ - deps: add tilt dependency and update gemspec dependencies versions
28+ - docs: improve documentation and add more usage examples
2329
2430## 0.1.0
2531
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Please ⭐ if you like it.
1616
1717## Install
1818
19- - Add to your Gemfile: ` gem 'tiny_admin', '~> 0.3 ' `
19+ - Add to your Gemfile: ` gem 'tiny_admin', '~> 0.4 ' `
2020- Mount the app in a route (check some examples with: Hanami, Rails, Roda and standalone in [ extra] ( extra ) )
2121 + in Rails, update _ config/routes.rb_ : ` mount TinyAdmin::Router => '/admin' `
2222- Configure the dashboard using ` TinyAdmin.configure ` and/or ` TinyAdmin.configure_from_file ` (see [ configuration] ( #configuration ) below):
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
33module TinyAdmin
4- VERSION = '0.3 .0'
4+ VERSION = '0.4 .0'
55end
You can’t perform that action at this time.
0 commit comments