Skip to content

Commit

Permalink
version bump to v1.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
flavorjones committed Oct 1, 2022
1 parent 5ab9cd8 commit 5c443e2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions lib/sqlite3/version.rb
Original file line number Diff line number Diff line change
@@ -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( "." )
Expand Down

0 comments on commit 5c443e2

Please sign in to comment.