sqlite3 1.5.3-x64-mingw-ucrt → 1.5.4-x64-mingw-ucrt

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9197f486c0a3d3949268b2b03a57ebf4c9acbbe3e3e27b57f9c69d4ab40b7dc9
4
- data.tar.gz: 0ad7c16aed964073939bd2e6b0f22731c179c4ee4a5eb19159b3b6b7dec8d6cc
3
+ metadata.gz: dd7461f813e7051d15708750e809468791fbf11035756d4dd53e9762c253189c
4
+ data.tar.gz: fcc73ccd2d3ca44b7cb2cacb97c495585d686a38641b9f24b0a29a5fae551744
5
5
  SHA512:
6
- metadata.gz: b7810ad77be0243261403acc981e41316ce2a07c6ce9d20838995edf94d9bb3f6d8039c2726379e18497fa338ee3ef59de8ec817184d1c5f9df9cd21ed7ba9b3
7
- data.tar.gz: 77885561f3c84c9f3fd55306198b424e4b59fb1c57fbb16682f0ccb01c8f181d7a0160409205b8d03565b20b62389b3da96098bcb54ab718b48fd7249125deba
6
+ metadata.gz: 9a9340b368acbbf3bdcf924a2fae150ff9d6fd973e2fda178a2af215dbfac2af071ccfc784a89d897860df3db3b31ae47b00efebb488b1e927696d3b1ed5352a
7
+ data.tar.gz: 0faa0c7931234dd5377200be5c7f1353fad080ce0a7edd9ad7f34f338248eb4332843e593b738733ef6ec8404dc11b00b114851025e371bd41ee0dc19d418510
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # sqlite3-ruby Changelog
2
2
 
3
+ ## 1.5.4 / 2022-11-18
4
+
5
+ ### Dependencies
6
+
7
+ * Vendored sqlite is updated to [v3.40.0](https://sqlite.org/releaselog/3_40_0.html).
8
+
9
+
3
10
  ## 1.5.3 / 2022-10-11
4
11
 
5
12
  ### Fixed
data/CONTRIBUTING.md CHANGED
@@ -17,8 +17,8 @@ Run `bin/build-gems` which will package gems for all supported platforms, and ru
17
17
  A quick checklist:
18
18
 
19
19
  - [ ] make sure CI is green!
20
- - [ ] update `CHANGELOG.md` and `lib/sqlite3/version.rb` including `VersionProxy::{MINOR,TINY}`
21
- - [ ] create a git tag using a format that matches the pattern `v\d+\.\d+\.\d+`, e.g. `v1.3.13`
20
+ - [x] update `CHANGELOG.md` and `lib/sqlite3/version.rb` including `VersionProxy::{MINOR,TINY}`
21
+ - [x] create a git tag using a format that matches the pattern `v\d+\.\d+\.\d+`, e.g. `v1.3.13`
22
22
  - [ ] run `bin/build-gems` and make sure it completes and all the tests pass
23
23
  - [ ] `for g in gems/*.gem ; do gem push $g ; done`
24
24
  - [ ] create a release at https://github.com/sparklemotion/sqlite3-ruby/releases and include sha2 checksums
data/dependencies.yml CHANGED
@@ -2,13 +2,13 @@
2
2
  :sqlite3:
3
3
  # checksum verified by first checking the published sha3(256) checksum against https://sqlite.org/download.html:
4
4
  #
5
- # $ sha3sum -a 256 ports/archives/sqlite-autoconf-3390400.tar.gz
6
- # 431328e30d12c551da9ba7ef2122b269076058512014afa799caaf62ca567090 ports/archives/sqlite-autoconf-3390400.tar.gz
5
+ # $ sha3sum -a 256 ports/archives/sqlite-autoconf-3400000.tar.gz
6
+ # 7ee8f02b21edb4489df5082b5cf5b7ef47bcebcdb0e209bf14240db69633c878 ports/archives/sqlite-autoconf-3400000.tar.gz
7
7
  #
8
- # $ sha256sum ports/archives/sqlite-autoconf-3390400.tar.gz
9
- # f31d445b48e67e284cf206717cc170ab63cbe4fd7f79a82793b772285e78fdbb ports/archives/sqlite-autoconf-3390400.tar.gz
8
+ # $ sha256sum ports/archives/sqlite-autoconf-3400000.tar.gz
9
+ # 0333552076d2700c75352256e91c78bf5cd62491589ba0c69aed0a81868980e7 ports/archives/sqlite-autoconf-3400000.tar.gz
10
10
  #
11
- :version: "3.39.4"
11
+ :version: "3.40.0"
12
12
  :files:
13
- - :url: "https://sqlite.org/2022/sqlite-autoconf-3390400.tar.gz"
14
- :sha256: "f31d445b48e67e284cf206717cc170ab63cbe4fd7f79a82793b772285e78fdbb"
13
+ - :url: "https://sqlite.org/2022/sqlite-autoconf-3400000.tar.gz"
14
+ :sha256: "0333552076d2700c75352256e91c78bf5cd62491589ba0c69aed0a81868980e7"
@@ -126,9 +126,13 @@ module Sqlite3
126
126
 
127
127
  def minimal_recipe
128
128
  MiniPortile.new(libname, sqlite3_config[:version]).tap do |recipe|
129
- recipe.files = sqlite3_config[:files]
130
- recipe.target = File.join(package_root_dir, "ports")
131
- recipe.patch_files = Dir[File.join(package_root_dir, "patches", "*.patch")].sort
129
+ if sqlite_source_dir
130
+ recipe.source_directory = sqlite_source_dir
131
+ else
132
+ recipe.files = sqlite3_config[:files]
133
+ recipe.target = File.join(package_root_dir, "ports")
134
+ recipe.patch_files = Dir[File.join(package_root_dir, "patches", "*.patch")].sort
135
+ end
132
136
  end
133
137
  end
134
138
 
@@ -157,6 +161,10 @@ module Sqlite3
157
161
  enable_config("cross-build")
158
162
  end
159
163
 
164
+ def sqlite_source_dir
165
+ arg_config("--with-sqlite-source-dir")
166
+ end
167
+
160
168
  def download
161
169
  minimal_recipe.download
162
170
  end
@@ -178,6 +186,9 @@ module Sqlite3
178
186
  Use libsqlcipher instead of libsqlite3.
179
187
  (Implies `--enable-system-libraries`.)
180
188
 
189
+ --with-sqlite-source-dir=DIRECTORY
190
+ (dev only) Build sqlite from the source code in DIRECTORY
191
+
181
192
  --help
182
193
  Display this message.
183
194
 
Binary file
@@ -1,11 +1,11 @@
1
1
  module SQLite3
2
2
 
3
- VERSION = "1.5.3"
3
+ VERSION = "1.5.4"
4
4
 
5
5
  module VersionProxy
6
6
  MAJOR = 1
7
7
  MINOR = 5
8
- TINY = 3
8
+ TINY = 4
9
9
  BUILD = nil
10
10
 
11
11
  STRING = [ MAJOR, MINOR, TINY, BUILD ].compact.join( "." )
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sqlite3
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.3
4
+ version: 1.5.4
5
5
  platform: x64-mingw-ucrt
6
6
  authors:
7
7
  - Jamis Buck
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2022-10-11 00:00:00.000000000 Z
13
+ date: 2022-11-18 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: minitest