From 1edb46b873efe9c29ae13bf784d4efabdab28f28 Mon Sep 17 00:00:00 2001 From: Weston Ganger Date: Thu, 17 Oct 2024 08:46:27 -0700 Subject: [PATCH] v1.0.0 --- CHANGELOG.md | 5 ++++- lib/active_record_simple_execute/version.rb | 4 +--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 49fa575..58e5d22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,10 @@ CHANGELOG --------- -- Unreleased - [View Diff](https://github.com/westonganger/active_record_simple_execute/compare/v0.9.1...master) +- Unreleased - [View Diff](https://github.com/westonganger/active_record_simple_execute/compare/v1.0.0...master) + * Nothing yet + +- v1.0.0 - Oct 17, 2024 - [View Diff](https://github.com/westonganger/active_record_simple_execute/compare/v0.9.1...v1.0.0) * [#8](https://github.com/westonganger/active_record_simple_execute/pull/8) - Allow usage with different Active Record database connections * [#7](https://github.com/westonganger/active_record_simple_execute/pull/7) - Drop support for Rails 5.1 and below * [#5](https://github.com/westonganger/active_record_simple_execute/pull/5) - Switch from using Active Record `execute` method to `exec_query` method for better memory management diff --git a/lib/active_record_simple_execute/version.rb b/lib/active_record_simple_execute/version.rb index 826123d..4cf7544 100644 --- a/lib/active_record_simple_execute/version.rb +++ b/lib/active_record_simple_execute/version.rb @@ -1,5 +1,3 @@ module ActiveRecordSimpleExecute - - VERSION = "0.9.1".freeze - + VERSION = "1.0.0".freeze end