Skip to content

Commit 6607e64

Browse files
authored
Merge pull request #342 from sparklemotion/flavorjones-update-sqlite-3.39.3
dep: update packaged sqlite3 to v3.39.3
2 parents bf63f77 + 10f4308 commit 6607e64

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ See [the README](https://github.com/sparklemotion/sqlite3-ruby#native-gems-recom
2323

2424
#### More consistent developer experience
2525

26-
Both the native (precompiled) gems and the vanilla "ruby platform" (source) gem include sqlite v3.39.2 by default.
26+
Both the native (precompiled) gems and the vanilla "ruby platform" (source) gem include sqlite v3.39.3 by default.
2727

2828
Defaulting to a consistent version of sqlite across all systems means that your development environment behaves exactly like your production environment, and you have access to the latest and greatest features of sqlite.
2929

3030
You can opt-out of the packaged version of sqlite (and use your system-installed library as in versions < 1.5.0). See [the README](https://github.com/sparklemotion/sqlite3-ruby#avoiding-the-precompiled-native-gem) for more information.
3131

32-
[Release notes for this version of sqlite](https://sqlite.org/releaselog/3_39_2.html)
32+
[Release notes for this version of sqlite](https://sqlite.org/releaselog/3_39_3.html)
3333

3434

3535
### Rubies and Platforms

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ If you are on a platform or version of Ruby that is not covered by the Native Ge
118118

119119
#### Packaged libsqlite3
120120

121-
By default, as of v1.5.0 of this library, libsqlite3 v3.38.5 is packaged with the gem and will be compiled and used automatically. This takes a bit longer than the native gem, but will provide a modern, well-supported version of libsqlite3.
121+
By default, as of v1.5.0 of this library, the latest available version of libsqlite3 is packaged with the gem and will be compiled and used automatically. This takes a bit longer than the native gem, but will provide a modern, well-supported version of libsqlite3.
122122

123123
For example, on a linux system running Ruby 2.5:
124124

ext/sqlite3/extconf.rb

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -133,18 +133,18 @@ def sqlite3_config
133133
def mini_portile_config
134134
{
135135
sqlite3: {
136-
# checksum verified by first checking the published sha3(256) checksum:
136+
# checksum verified by first checking the published sha3(256) checksum against https://sqlite.org/download.html:
137137
#
138-
# $ sha3sum -a 256 ports/archives/sqlite-autoconf-3390200.tar.gz
139-
# b195891eb32305481e61c6718b8cc3b090685b613c4824a076c63166a46c5bee ports/archives/sqlite-autoconf-3390200.tar.gz
138+
# $ sha3sum -a 256 ports/archives/sqlite-autoconf-3390300.tar.gz
139+
# dfa055c70724cd63f0b7da6e9f53530d8da51fe021e3f864d58c7c847d590e1d ports/archives/sqlite-autoconf-3390300.tar.gz
140140
#
141-
# $ sha256sum ports/archives/sqlite-autoconf-3390200.tar.gz
142-
# 852be8a6183a17ba47cee0bbff7400b7aa5affd283bf3beefc34fcd088a239de ports/archives/sqlite-autoconf-3390200.tar.gz
141+
# $ sha256sum ports/archives/sqlite-autoconf-3390300.tar.gz
142+
# 7868fb3082be3f2cf4491c6fba6de2bddcbc293a35fefb0624ee3c13f01422b9 ports/archives/sqlite-autoconf-3390300.tar.gz
143143
#
144-
version: "3.39.2",
144+
version: "3.39.3",
145145
files: [{
146-
url: "https://www.sqlite.org/2022/sqlite-autoconf-3390200.tar.gz",
147-
sha256: "852be8a6183a17ba47cee0bbff7400b7aa5affd283bf3beefc34fcd088a239de",
146+
url: "https://www.sqlite.org/2022/sqlite-autoconf-3390300.tar.gz",
147+
sha256: "7868fb3082be3f2cf4491c6fba6de2bddcbc293a35fefb0624ee3c13f01422b9",
148148
}],
149149
}
150150
}

0 commit comments

Comments
 (0)