From 3c14b53f54f3b3d5009b0c8e59cb90c99bdbd0da Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Aug 2024 04:11:29 +0000 Subject: [PATCH] Update sqlite3 requirement from ~> 1.4 to ~> 2.0 Updates the requirements on [sqlite3](https://github.com/sparklemotion/sqlite3-ruby) to permit the latest version. - [Release notes](https://github.com/sparklemotion/sqlite3-ruby/releases) - [Changelog](https://github.com/sparklemotion/sqlite3-ruby/blob/main/CHANGELOG.md) - [Commits](https://github.com/sparklemotion/sqlite3-ruby/compare/v1.4.0...v2.0.3) --- updated-dependencies: - dependency-name: sqlite3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 4717e1c56b..fa1b3b74be 100644 --- a/Gemfile +++ b/Gemfile @@ -19,7 +19,7 @@ platforms :ruby do elsif ENV['DB'] == 'postgres' gem 'pg' else - gem 'sqlite3', '~> 1.4' + gem 'sqlite3', '~> 2.0' end end