Skip to content

Commit 17257ea

Browse files
author
Mattia Roccoberton
committed
Bump to version 0.7.0
1 parent d4d6bbd commit 17257ea

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

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

33
A compact and composable dashboard component for Ruby
44

5+
## 0.7.0
6+
7+
- feat: widgets
8+
- feat: internal changes => context, store, section classes
9+
510
## 0.6.0
611

712
- feat: new content section type

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Tiny Admin
22

3-
[![Gem Version](https://badge.fury.io/rb/tiny_admin.svg)](https://badge.fury.io/rb/tiny_admin) [![Linters](https://github.com/blocknotes/tiny_admin/actions/workflows/linters.yml/badge.svg)](https://github.com/blocknotes/tiny_admin/actions/workflows/linters.yml) [![Specs](https://github.com/blocknotes/tiny_admin/actions/workflows/specs.yml/badge.svg)](https://github.com/blocknotes/tiny_admin/actions/workflows/specs.yml)
3+
[![Gem Version](https://badge.fury.io/rb/tiny_admin.svg)](https://badge.fury.io/rb/tiny_admin)
4+
[![Gem Downloads](https://badgen.net/rubygems/dt/tiny_admin)](https://rubygems.org/gems/tiny_admin)
5+
[![Linters](https://github.com/blocknotes/tiny_admin/actions/workflows/linters.yml/badge.svg)](https://github.com/blocknotes/tiny_admin/actions/workflows/linters.yml)
6+
[![Specs](https://github.com/blocknotes/tiny_admin/actions/workflows/specs.yml/badge.svg)](https://github.com/blocknotes/tiny_admin/actions/workflows/specs.yml)
47

58
A compact and composable dashboard component for Ruby.
69

@@ -16,7 +19,7 @@ Please ⭐ if you like it.
1619

1720
## Install
1821

19-
- Add to your Gemfile: `gem 'tiny_admin', '~> 0.6'`
22+
- Add to your Gemfile: `gem 'tiny_admin', '~> 0.7'`
2023
- Mount the app in a route (check some examples with: Hanami, Rails, Roda and standalone in [extra](extra))
2124
+ in Rails, update _config/routes.rb_: `mount TinyAdmin::Router => '/admin'`
2225
- Configure the dashboard using `TinyAdmin.configure` and/or `TinyAdmin.configure_from_file` with a YAML config file (see [configuration](#configuration) below):

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.6.0'
4+
VERSION = '0.7.0'
55
end

0 commit comments

Comments
 (0)