sqlite3 2.3.0-x86_64-darwin → 2.3.1-x86_64-darwin

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: 8cb5c87e69c6731195c621eeea7d515a8ea1360aa1a999089526201ace115b67
4
- data.tar.gz: f5afa4ccc6b71aee4ca50026e319a44383c04cea5a92083314685ad9177a21c4
3
+ metadata.gz: 1fce39d7a3c00b8d60965b15b849d87069fb82a519bdee7c46807a27f05b0fd5
4
+ data.tar.gz: dcc7ed214610c27b9cf88ce2aebc1a5c676858e1ebe7e3c2d5fc0ec9c844f2b0
5
5
  SHA512:
6
- metadata.gz: fd36ee8fa78dbe38b11b4ea062228e2705fc132dff87837a848dea0d7415c1f4b955e73af41c0516520ef3c0ae46375e07593cd98251f80719bce5997c6d3477
7
- data.tar.gz: '08a25a8d0a75bf4e6f3db529c85f7ac28cae1d7ec05ae57b78951ab071a7c566a035e1d6a574e1426d68f792f5d4bfe10f9e132f7f6b559f958916ac54acf582'
6
+ metadata.gz: 9f78a7b36a0c44de68ee9d5f7fa0434f4a7b32a862d8716f4ad81047e0e58a66264451206aa205f4cfd7d7eba96d313086a42ed50f001466e4f41efe4d63d154
7
+ data.tar.gz: 3a1c7e65a494c78b96dd49a773d7fa60656e27d6f55a20b59eec0ffde4ea7c8c058fbca0ccd708e3dc9c3139daaa83d9218aab0ca896658f45dc09d208d392fb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # sqlite3-ruby Changelog
2
2
 
3
+ ## 2.3.1 / 2024-11-25
4
+
5
+ ### Dependencies
6
+
7
+ - Vendored sqlite is updated to [v3.47.1](https://sqlite.org/releaselog/3_47_1.html) [#589] @flavorjones
8
+
9
+
3
10
  ## 2.3.0 / 2024-11-20
4
11
 
5
12
  ### Added
data/CONTRIBUTING.md CHANGED
@@ -45,12 +45,16 @@ Update `/dependencies.yml` to reflect:
45
45
 
46
46
  ## Making a release
47
47
 
48
- A quick checklist:
48
+ A quick checklist to cutting a release of the sqlite3 gem:
49
49
 
50
50
  - [ ] make sure CI is green!
51
- - [ ] update `CHANGELOG.md` and `lib/sqlite3/version.rb`
52
- - [ ] run `bin/build-gems` and make sure it completes and all the tests pass
53
- - [ ] create a git tag using a format that matches the pattern `v\d+\.\d+\.\d+`, e.g. `v1.3.13`
54
- - [ ] `git push && git push --tags`
55
- - [ ] `for g in gems/*.gem ; do gem push $g ; done`
56
- - [ ] create a release at https://github.com/sparklemotion/sqlite3-ruby/releases and include sha2 checksums
51
+ - bump the version
52
+ - [ ] update `CHANGELOG.md` and `lib/sqlite3/version.rb`
53
+ - [ ] create a git tag using a format that matches the pattern `v\d+\.\d+\.\d+`, e.g. `v1.3.13`
54
+ - build the native gems
55
+ - [ ] run `bin/build-gems` and make sure it completes and all the tests pass
56
+ - push
57
+ - [ ] `git push && git push --tags`
58
+ - [ ] `for g in gems/*.gem ; do gem push $g ; done`
59
+ - announce
60
+ - [ ] create a release at https://github.com/sparklemotion/sqlite3-ruby/releases and include sha2 checksums
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
- # a9166e017ef8bc33379b1c2eed346bf43cded6d40df0feb984a33fba1a828ba9
3
+ # c6c1756fbeb1e34e0ee31f8609bfc1fd4630b3faadde71a28ad3a55df259d854
4
4
  #
5
- # $ sha3sum -a 256 ports/archives/sqlite-autoconf-3470000.tar.gz
6
- # a9166e017ef8bc33379b1c2eed346bf43cded6d40df0feb984a33fba1a828ba9 ports/archives/sqlite-autoconf-3470000.tar.gz
5
+ # $ sha3sum -a 256 ports/archives/sqlite-autoconf-3470100.tar.gz
6
+ # c6c1756fbeb1e34e0ee31f8609bfc1fd4630b3faadde71a28ad3a55df259d854 ports/archives/sqlite-autoconf-3470100.tar.gz
7
7
  #
8
- # $ sha256sum ports/archives/sqlite-autoconf-3470000.tar.gz
9
- # 83eb21a6f6a649f506df8bd3aab85a08f7556ceed5dbd8dea743ea003fc3a957 ports/archives/sqlite-autoconf-3470000.tar.gz
10
- version: "3.47.0"
8
+ # $ sha256sum ports/archives/sqlite-autoconf-3470100.tar.gz
9
+ # 416a6f45bf2cacd494b208fdee1beda509abda951d5f47bc4f2792126f01b452 ports/archives/sqlite-autoconf-3470100.tar.gz
10
+ version: "3.47.1"
11
11
  files:
12
- - url: "https://sqlite.org/2024/sqlite-autoconf-3470000.tar.gz"
13
- sha256: "83eb21a6f6a649f506df8bd3aab85a08f7556ceed5dbd8dea743ea003fc3a957"
12
+ - url: "https://sqlite.org/2024/sqlite-autoconf-3470100.tar.gz"
13
+ sha256: "416a6f45bf2cacd494b208fdee1beda509abda951d5f47bc4f2792126f01b452"
Binary file
Binary file
Binary file
@@ -1,4 +1,4 @@
1
1
  module SQLite3
2
2
  # (String) the version of the sqlite3 gem, e.g. "2.1.1"
3
- VERSION = "2.3.0"
3
+ VERSION = "2.3.1"
4
4
  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.3.0
4
+ version: 2.3.1
5
5
  platform: x86_64-darwin
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-11-20 00:00:00.000000000 Z
14
+ date: 2024-11-25 00:00:00.000000000 Z
15
15
  dependencies: []
16
16
  description: |
17
17
  Ruby library to interface with the SQLite3 database engine (http://www.sqlite.org). Precompiled