sqlite3 2.0.1 → 2.0.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: a1d1281e03d34b5b04218274d0eacdffcc4b5f54a40ea0923aa128eeed22dbe5
4
- data.tar.gz: 196c5fba4a58b976ef2c3b58d69e0e908959004a43848a919e75c00ab1d3e478
3
+ metadata.gz: f55003062c0de8516574697a3a8aa323c0ec16265c6fea50ab51012447ea3751
4
+ data.tar.gz: 4c176a14ff9f12850b9f2cb5ebc1b7141127076a25d7ce75fd36aa14514a5b98
5
5
  SHA512:
6
- metadata.gz: a00c1989b79aa0727bee1f4092b71a684bc62683ed8d10f0a6e6161df1ade832ed0486a346b2a0da7110a837c91f9747134d99a3e4d0c6e012c0d912a4f7a464
7
- data.tar.gz: 5af7c609165c0f4107e2b42d1720a9223cdce87ad8a7b7fa7887a7f29cad5d7b47e9068439a89628c2ef9a6bf4361d1d0cdbcc56451b80a6e694f75c98d5f895
6
+ metadata.gz: a7f2b0891c6480a9cf2731ac8712cedcf15ffab08f2d2a68967cb9e1afc2a33e7d7501050d2056de74a069f65ae113e2e8bf195edb7f28dc010f8b6e70c2d795
7
+ data.tar.gz: aad1f26e943b7dd01543f86682b36a0f319fab42446501f747f2add4825d767eacf4efcb4f32d652e306d4ecd41ab2d4556501b7b3072361d9276fa99023a6d8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # sqlite3-ruby Changelog
2
2
 
3
+ ## 2.0.2 / 2024-05-23
4
+
5
+ ### Dependencies
6
+
7
+ - Vendored sqlite is updated to [v3.46.0](https://sqlite.org/releaselog/3_46_0.html) @flavorjones
8
+
9
+
3
10
  ## 2.0.1 / 2024-04-20
4
11
 
5
12
  ### Fixed
data/INSTALLATION.md CHANGED
@@ -65,6 +65,8 @@ If you are on a platform or version of Ruby that is not covered by the Native Ge
65
65
 
66
66
  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.
67
67
 
68
+ ⚠ A prerequisite to build the gem with the packaged sqlite3 is that you must have `pkgconf` installed.
69
+
68
70
  For example, on a linux system running Ruby 2.5:
69
71
 
70
72
  ``` text
data/dependencies.yml CHANGED
@@ -1,13 +1,13 @@
1
1
  sqlite3:
2
2
  # checksum verified by first checking the published sha3(256) checksum against https://sqlite.org/download.html:
3
- # cc1050780e0266de4d91b31c8deaf4638336908c12c21898e9f1fcae1e2ac303
3
+ # 83d2acf79453deb7d6520338b1f4585f12e39b27cd370fb08593afa198f471fc
4
4
  #
5
- # $ sha3sum -a 256 ports/archives/sqlite-autoconf-3450300.tar.gz
6
- # cc1050780e0266de4d91b31c8deaf4638336908c12c21898e9f1fcae1e2ac303 ports/archives/sqlite-autoconf-3450300.tar.gz
5
+ # $ sha3sum -a 256 ports/archives/sqlite-autoconf-3460000.tar.gz
6
+ # 83d2acf79453deb7d6520338b1f4585f12e39b27cd370fb08593afa198f471fc ports/archives/sqlite-autoconf-3460000.tar.gz
7
7
  #
8
- # $ sha256sum ports/archives/sqlite-autoconf-3450300.tar.gz
9
- # b2809ca53124c19c60f42bf627736eae011afdcc205bb48270a5ee9a38191531 ports/archives/sqlite-autoconf-3450300.tar.gz
10
- version: "3.45.3"
8
+ # $ sha256sum ports/archives/sqlite-autoconf-3460000.tar.gz
9
+ # 6f8e6a7b335273748816f9b3b62bbdc372a889de8782d7f048c653a447417a7d ports/archives/sqlite-autoconf-3460000.tar.gz
10
+ version: "3.46.0"
11
11
  files:
12
- - url: "https://sqlite.org/2024/sqlite-autoconf-3450300.tar.gz"
13
- sha256: "b2809ca53124c19c60f42bf627736eae011afdcc205bb48270a5ee9a38191531"
12
+ - url: "https://sqlite.org/2024/sqlite-autoconf-3460000.tar.gz"
13
+ sha256: "6f8e6a7b335273748816f9b3b62bbdc372a889de8782d7f048c653a447417a7d"
@@ -1,3 +1,3 @@
1
1
  module SQLite3
2
- VERSION = "2.0.1"
2
+ VERSION = "2.0.2"
3
3
  end
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: 2.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jamis Buck
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2024-04-20 00:00:00.000000000 Z
14
+ date: 2024-05-23 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: mini_portile2
@@ -76,7 +76,7 @@ files:
76
76
  - lib/sqlite3/statement.rb
77
77
  - lib/sqlite3/value.rb
78
78
  - lib/sqlite3/version.rb
79
- - ports/archives/sqlite-autoconf-3450300.tar.gz
79
+ - ports/archives/sqlite-autoconf-3460000.tar.gz
80
80
  homepage: https://github.com/sparklemotion/sqlite3-ruby
81
81
  licenses:
82
82
  - BSD-3-Clause
@@ -105,7 +105,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
105
105
  - !ruby/object:Gem::Version
106
106
  version: '0'
107
107
  requirements: []
108
- rubygems_version: 3.5.9
108
+ rubygems_version: 3.5.10
109
109
  signing_key:
110
110
  specification_version: 4
111
111
  summary: Ruby library to interface with the SQLite3 database engine (http://www.sqlite.org).