diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e891e4..08a2271 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## [Unreleased] +## [0.4.2] - 2024-04-10 + +- Fix bug in error page when using Postgres ([@mintuhouse](https://github.com/fractaledmind/solid_errors/pull/43)) + ## [0.4.1] - 2024-04-09 - Ensure only first occurence is open on error page ([@fractaledmind](https://github.com/fractaledmind/solid_errors/pull/42)) diff --git a/Gemfile.lock b/Gemfile.lock index e77e3ed..f27180a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - solid_errors (0.4.1) + solid_errors (0.4.2) actionmailer (~> 7.0) actionpack (~> 7.0) actionview (~> 7.0) diff --git a/lib/solid_errors/version.rb b/lib/solid_errors/version.rb index 0e6f448..0266947 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.4.1" + VERSION = "0.4.2" end