Skip to content

Commit 5c443e2

Browse files
committed
version bump to v1.5.2
1 parent 5ab9cd8 commit 5c443e2

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# sqlite3-ruby Changelog
22

3+
## 1.5.2 / 2022-10-01
4+
5+
### Packaging
6+
7+
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.
8+
9+
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]
10+
11+
312
## 1.5.1 / 2022-09-29
413

514
### Dependencies

lib/sqlite3/version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
module SQLite3
22

3-
VERSION = "1.5.1"
3+
VERSION = "1.5.2"
44

55
module VersionProxy
66
MAJOR = 1
77
MINOR = 5
8-
TINY = 1
8+
TINY = 2
99
BUILD = nil
1010

1111
STRING = [ MAJOR, MINOR, TINY, BUILD ].compact.join( "." )

0 commit comments

Comments
 (0)