sqlite3 1.6.1 → 1.6.2

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: 7558f802bfb759defabcb78f2b9e80655d73a157b66c8e25bff2344ac6724126
4
- data.tar.gz: 794d60fe56a786dc61b7c005463b80688a3dff88c17d161700045e2d88c0722e
3
+ metadata.gz: 93984d54ff6da907930347a1ac52f078bf0c6bc60cae93240dc4dd77192ecd03
4
+ data.tar.gz: dd6c7397f5e9116fb431a0029760bf965387c4c5b24cab02f486bde945ed756b
5
5
  SHA512:
6
- metadata.gz: 67165e69cefad33fd12044d3851b76a8f8d9c0c95456731cd5eadda761fddb9a274638b633fc31a9d0eaf9523c643753f0b9928a49370a370426065671b2059f
7
- data.tar.gz: 1bf46233c0c71375397b01b5dd7bae1fa29164cd603c0f070cd6db41381068286f9650437a315a9be436401a48ef9538c16f46ee373c844038140560c7209255
6
+ metadata.gz: 7092eb1290793994d68dff97b8016ff5d547dee702ac37f2b43d9e14bdba22f8df01faf0969132e77f69af0a371881312bc6bbb4ba313b6708c277b71517a62e
7
+ data.tar.gz: bc1e23420969a5a14ab4f69098d57e2454fb8bffa6cef878b01c14335ac9873e1dbc129d0895e147ff5071c44e9e9afd9ec50ee6b2b228771ef2a02ba7fb8c40
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # sqlite3-ruby Changelog
2
2
 
3
+ ## 1.6.2 / 2023-03-27
4
+
5
+ ### Dependencies
6
+
7
+ Vendored sqlite is updated from v3.41.0 to [v3.41.2](https://sqlite.org/releaselog/3_41_2.html).
8
+
9
+
10
+ ### Packaging
11
+
12
+ * Allow compilation against system libraries without the presence of `mini_portile2`, primarily for the convenience of linux distro repackagers. [#381] (Thank you, @voxik!)
13
+
14
+
3
15
  ## 1.6.1 / 2023-02-22
4
16
 
5
17
  ### Dependencies
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-3410000.tar.gz
6
- # d783ab44a2b44394331d392b8b8d4d2ea4964cbb2befc7c6c649bcfbdb3c9ffe ports/archives/sqlite-autoconf-3410000.tar.gz
5
+ # $ sha3sum -a 256 ports/archives/sqlite-autoconf-3410200.tar.gz
6
+ # 1ebb5539dd6fde9a0f89e8ab765af0b9f02010fc6baf6985b54781a38c00020a ports/archives/sqlite-autoconf-3410200.tar.gz
7
7
  #
8
- # $ sha256sum ports/archives/sqlite-autoconf-3410000.tar.gz
9
- # 49f77ac53fd9aa5d7395f2499cb816410e5621984a121b858ccca05310b05c70 ports/archives/sqlite-autoconf-3410000.tar.gz
8
+ # $ sha256sum ports/archives/sqlite-autoconf-3410200.tar.gz
9
+ # e98c100dd1da4e30fa460761dab7c0b91a50b785e167f8c57acc46514fae9499 ports/archives/sqlite-autoconf-3410200.tar.gz
10
10
  #
11
- :version: "3.41.0"
11
+ :version: "3.41.2"
12
12
  :files:
13
- - :url: "https://sqlite.org/2023/sqlite-autoconf-3410000.tar.gz"
14
- :sha256: "49f77ac53fd9aa5d7395f2499cb816410e5621984a121b858ccca05310b05c70"
13
+ - :url: "https://sqlite.org/2023/sqlite-autoconf-3410200.tar.gz"
14
+ :sha256: "e98c100dd1da4e30fa460761dab7c0b91a50b785e167f8c57acc46514fae9499"
@@ -1,5 +1,4 @@
1
1
  require "mkmf"
2
- require "mini_portile2"
3
2
  require "yaml"
4
3
 
5
4
  module Sqlite3
@@ -131,6 +130,8 @@ module Sqlite3
131
130
  end
132
131
 
133
132
  def minimal_recipe
133
+ require "mini_portile2"
134
+
134
135
  MiniPortile.new(libname, sqlite3_config[:version]).tap do |recipe|
135
136
  if sqlite_source_dir
136
137
  recipe.source_directory = sqlite_source_dir
@@ -1,11 +1,11 @@
1
1
  module SQLite3
2
2
 
3
- VERSION = "1.6.1"
3
+ VERSION = "1.6.2"
4
4
 
5
5
  module VersionProxy
6
6
  MAJOR = 1
7
7
  MINOR = 6
8
- TINY = 1
8
+ TINY = 2
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.6.1
4
+ version: 1.6.2
5
5
  platform: ruby
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: 2023-02-22 00:00:00.000000000 Z
13
+ date: 2023-03-27 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: mini_portile2
@@ -160,7 +160,7 @@ files:
160
160
  - lib/sqlite3/translator.rb
161
161
  - lib/sqlite3/value.rb
162
162
  - lib/sqlite3/version.rb
163
- - ports/archives/sqlite-autoconf-3410000.tar.gz
163
+ - ports/archives/sqlite-autoconf-3410200.tar.gz
164
164
  - test/helper.rb
165
165
  - test/test_backup.rb
166
166
  - test/test_collation.rb
@@ -209,7 +209,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
209
209
  - !ruby/object:Gem::Version
210
210
  version: '0'
211
211
  requirements: []
212
- rubygems_version: 3.4.1
212
+ rubygems_version: 3.4.6
213
213
  signing_key:
214
214
  specification_version: 4
215
215
  summary: This module allows Ruby programs to interface with the SQLite3 database engine