From acc15b405bc323198c0821edfd73e03b6f35284e Mon Sep 17 00:00:00 2001 From: Stephen Margheim Date: Thu, 19 Sep 2024 01:55:53 +0300 Subject: [PATCH] Bump version and update changelong --- CHANGELOG.md | 4 ++++ Gemfile.lock | 2 +- lib/solid_errors/version.rb | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cc44bd..2da3648 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## [Unreleased] +## [0.6.1] - 2024-09-19 + +- Fix the install generator by putting the schema in the db/ directory ([@fractaledmind](https://github.com/fractaledmind/solid_errors/pull/62)) + ## [0.6.0] - 2024-09-09 - Slim down installer and have it use a final schema instead of migrations ([@fractaledmind](https://github.com/fractaledmind/solid_errors/pull/60)) diff --git a/Gemfile.lock b/Gemfile.lock index 653033d..9a997c5 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - solid_errors (0.6.0) + solid_errors (0.6.1) actionmailer (>= 7.0) actionpack (>= 7.0) actionview (>= 7.0) diff --git a/lib/solid_errors/version.rb b/lib/solid_errors/version.rb index b22a7e5..5079125 100644 --- a/lib/solid_errors/version.rb +++ b/lib/solid_errors/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module SolidErrors - VERSION = "0.6.0" + VERSION = "0.6.1" end