From 5c443e239e204dc6bebb6129d9f7b8be854fed1e Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Sat, 1 Oct 2022 12:28:58 -0400 Subject: [PATCH] version bump to v1.5.2 --- CHANGELOG.md | 9 +++++++++ lib/sqlite3/version.rb | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04e1127f..a229d157 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # sqlite3-ruby Changelog +## 1.5.2 / 2022-10-01 + +### Packaging + +This version correctly vendors the tarball for sqlite v3.39.4 in the vanilla "ruby" platform gem package, so that users will not require network access at installation. + +v1.5.0 and v1.5.1 mistakenly packaged the tarball for sqlite v3.38.5 in the vanilla "ruby" platform gem, resulting in downloading the intended tarball over the network at installation time (or, if the network was not available, failure to install). Note that the precompiled native gems were not affected by this issue. [#352] + + ## 1.5.1 / 2022-09-29 ### Dependencies diff --git a/lib/sqlite3/version.rb b/lib/sqlite3/version.rb index 9b2a1b2d..3fab979a 100644 --- a/lib/sqlite3/version.rb +++ b/lib/sqlite3/version.rb @@ -1,11 +1,11 @@ module SQLite3 - VERSION = "1.5.1" + VERSION = "1.5.2" module VersionProxy MAJOR = 1 MINOR = 5 - TINY = 1 + TINY = 2 BUILD = nil STRING = [ MAJOR, MINOR, TINY, BUILD ].compact.join( "." )