Skip to content

Commit

Permalink
Bump to version 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
blocknotes committed May 1, 2023
1 parent d4d6bbd commit 17257ea
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

A compact and composable dashboard component for Ruby

## 0.7.0

- feat: widgets
- feat: internal changes => context, store, section classes

## 0.6.0

- feat: new content section type
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Tiny Admin

[![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)
[![Gem Version](https://badge.fury.io/rb/tiny_admin.svg)](https://badge.fury.io/rb/tiny_admin)
[![Gem Downloads](https://badgen.net/rubygems/dt/tiny_admin)](https://rubygems.org/gems/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)

A compact and composable dashboard component for Ruby.

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

## Install

- Add to your Gemfile: `gem 'tiny_admin', '~> 0.6'`
- Add to your Gemfile: `gem 'tiny_admin', '~> 0.7'`
- Mount the app in a route (check some examples with: Hanami, Rails, Roda and standalone in [extra](extra))
+ in Rails, update _config/routes.rb_: `mount TinyAdmin::Router => '/admin'`
- Configure the dashboard using `TinyAdmin.configure` and/or `TinyAdmin.configure_from_file` with a YAML config file (see [configuration](#configuration) below):
Expand Down
2 changes: 1 addition & 1 deletion lib/tiny_admin/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module TinyAdmin
VERSION = '0.6.0'
VERSION = '0.7.0'
end

0 comments on commit 17257ea

Please sign in to comment.