diff --git a/CHANGELOG.md b/CHANGELOG.md index d16dd80..b21a67e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## [Unreleased] +## [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)) + ## [0.5.0] - 2024-08-22 - introduce ability to view resolved errors and delete them ([@acoffman](https://github.com/fractaledmind/solid_errors/pull/56)) diff --git a/Gemfile.lock b/Gemfile.lock index 44a8fab..653033d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - solid_errors (0.5.0) + solid_errors (0.6.0) actionmailer (>= 7.0) actionpack (>= 7.0) actionview (>= 7.0) diff --git a/lib/solid_errors/version.rb b/lib/solid_errors/version.rb index af7bf34..b22a7e5 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.5.0" + VERSION = "0.6.0" end