From 7a87f42e517822f9e3b985596d8ca0a1d79078df Mon Sep 17 00:00:00 2001 From: Akira Matsuda Date: Mon, 20 Jan 2025 11:18:55 +0900 Subject: [PATCH] Version 1.1.0 --- CHANGELOG.md | 16 ++++++++++++++++ database_rewinder.gemspec | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..2fd936e --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,16 @@ +## 1.1.0 (2025-01-20) + +* Rails 8.0, Ruby 3.4 support. + +* Fixed gemspec to include minimum files in packed gem. (#91 by @ybiquitous) + +* Added support for trilogy adapter. (#90 by @hirocaster) + +* Fixed NoMethodError `ConnectionPool#connection` on Rails 8.0. (#93 by kucho) + +* Fixed a bug recording table names to a wrong cleaner when using the same database name on different hosts. (#68 by sinsoku) + + +## 1.0.1 (2024-02-27) + +* Fixed a warning on AR < 7.1 && mysql. Also, fixed an unnecessary reference to `Rails` constant for non-Rails apps. (#88 by @onk) diff --git a/database_rewinder.gemspec b/database_rewinder.gemspec index fec29a9..771bcce 100644 --- a/database_rewinder.gemspec +++ b/database_rewinder.gemspec @@ -6,7 +6,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |spec| spec.name = "database_rewinder" - spec.version = '1.0.1' + spec.version = '1.1.0' spec.authors = ["Akira Matsuda"] spec.email = ["ronnie@dio.jp"] spec.description = "A minimalist's tiny and ultra-fast database cleaner for Active Record"