sqlite3 2.3.0-arm64-darwin → 2.3.1-arm64-darwin
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/CONTRIBUTING.md +11 -7
- data/dependencies.yml +8 -8
- data/lib/sqlite3/3.1/sqlite3_native.bundle +0 -0
- data/lib/sqlite3/3.2/sqlite3_native.bundle +0 -0
- data/lib/sqlite3/3.3/sqlite3_native.bundle +0 -0
- data/lib/sqlite3/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d9eb528872e144563b0bb7f5ba39010e4f6ae0fef233d821e4c420342ae795e5
|
4
|
+
data.tar.gz: 98515b581869745f6e4f8ff4892c0287a89321a1574dedd04870f044e50e625b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 364f8cbdfcd7477b6efd93c6e1d146637cb078879261a11d7201f9c1f496c35aec02d5881d4dc3d6fe1af52016ac8f6208205b07d2dd917ccb36d6173baaacb0
|
7
|
+
data.tar.gz: dc224afa72f940efde777aebbf06c0644ec14187bf1d2bd2dc6522720867b4a88b4e44fefdbc5d84a9b55e14395b0d7c620d12024634a5a60adcbb0c3441694f
|
data/CHANGELOG.md
CHANGED
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
|
-
-
|
52
|
-
- [ ]
|
53
|
-
- [ ] create a git tag using a format that matches the pattern `v\d+\.\d+\.\d+`, e.g. `v1.3.13`
|
54
|
-
-
|
55
|
-
- [ ] `
|
56
|
-
-
|
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
|
-
#
|
3
|
+
# c6c1756fbeb1e34e0ee31f8609bfc1fd4630b3faadde71a28ad3a55df259d854
|
4
4
|
#
|
5
|
-
# $ sha3sum -a 256 ports/archives/sqlite-autoconf-
|
6
|
-
#
|
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-
|
9
|
-
#
|
10
|
-
version: "3.47.
|
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-
|
13
|
-
sha256: "
|
12
|
+
- url: "https://sqlite.org/2024/sqlite-autoconf-3470100.tar.gz"
|
13
|
+
sha256: "416a6f45bf2cacd494b208fdee1beda509abda951d5f47bc4f2792126f01b452"
|
Binary file
|
Binary file
|
Binary file
|
data/lib/sqlite3/version.rb
CHANGED
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.
|
4
|
+
version: 2.3.1
|
5
5
|
platform: arm64-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-
|
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
|