sqlite3 2.9.1-aarch64-linux-musl → 2.9.2-aarch64-linux-musl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/CONTRIBUTING.md +16 -11
- data/dependencies.yml +8 -8
- data/lib/sqlite3/3.2/sqlite3_native.so +0 -0
- data/lib/sqlite3/3.3/sqlite3_native.so +0 -0
- data/lib/sqlite3/3.4/sqlite3_native.so +0 -0
- data/lib/sqlite3/4.0/sqlite3_native.so +0 -0
- data/lib/sqlite3/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2977d3b4b7845d2c24c5fde426482aab92649d207653dcebd54dd3efe950f91d
|
|
4
|
+
data.tar.gz: 488e437682a81744c4d491ea5f977e73e7055473f6cd1f25e37482719e4703e7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 868dfc9da7aeb0ca740be947d8456fef2a2d39f493bb565a9c48de8326ccfd8f34c955f0a62e2526155b0f6acedecd6b9dc7c3d45abdca0c937129b9a590c9f1
|
|
7
|
+
data.tar.gz: 0d0b5d4a0516da4a81957e20ddce63e86879ddafa708719107268bac42da1120d32b585a1004f51d172bfeaba3b34ae7c79f6f8fecd6c1cdc60e6e0d9b0f044f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# sqlite3-ruby Changelog
|
|
2
2
|
|
|
3
|
+
## 2.9.2 / 2026-03-15
|
|
4
|
+
|
|
5
|
+
- Vendored sqlite is updated to [v3.51.3](https://www.sqlite.org/releaselog/3_51_3.html) (from v3.51.2). #688 @flavorjones
|
|
6
|
+
|
|
7
|
+
|
|
3
8
|
## 2.9.1 / 2026-02-28
|
|
4
9
|
|
|
5
10
|
- Vendored sqlite is updated to [v3.51.2](https://www.sqlite.org/releaselog/3_51_2.html) (from v3.51.1). #683 @flavorjones
|
data/CONTRIBUTING.md
CHANGED
|
@@ -47,14 +47,19 @@ Update `/dependencies.yml` to reflect:
|
|
|
47
47
|
|
|
48
48
|
A quick checklist to cutting a release of the sqlite3 gem:
|
|
49
49
|
|
|
50
|
-
|
|
51
|
-
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
50
|
+
Prep
|
|
51
|
+
- [ ] Make sure CI is green!
|
|
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
|
+
- [ ] `git push && git push --tags`
|
|
55
|
+
|
|
56
|
+
Automated build and release
|
|
57
|
+
- [ ] Run workflow https://github.com/sparklemotion/sqlite3-ruby/actions/workflows/release.yml
|
|
58
|
+
- [ ] Copy checksums from the push job
|
|
59
|
+
|
|
60
|
+
Manual build and release
|
|
61
|
+
- [ ] Run `bin/build-gems` and make sure it completes and all the tests pass
|
|
62
|
+
- [ ] `for g in gems/*.gem ; do gem push $g ; done`
|
|
63
|
+
|
|
64
|
+
Post-release
|
|
65
|
+
- [ ] 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
|
+
# 581215771b32ea4c4062e6fb9842c4aa43d0a7fb2b6670ff6fa4ebb807781204
|
|
4
4
|
#
|
|
5
|
-
# $ sha3sum -a 256 ports/archives/sqlite-autoconf-
|
|
6
|
-
#
|
|
5
|
+
# $ sha3sum -a 256 ports/archives/sqlite-autoconf-3510300.tar.gz
|
|
6
|
+
# 581215771b32ea4c4062e6fb9842c4aa43d0a7fb2b6670ff6fa4ebb807781204 ports/archives/sqlite-autoconf-3510300.tar.gz
|
|
7
7
|
#
|
|
8
|
-
# $ sha256sum ports/archives/sqlite-autoconf-
|
|
9
|
-
#
|
|
10
|
-
version: "3.51.
|
|
8
|
+
# $ sha256sum ports/archives/sqlite-autoconf-3510300.tar.gz
|
|
9
|
+
# 81f5be397049b0cae1b167f2225af7646fc0f82e4a9b3c48c9ea3a533e21d77a ports/archives/sqlite-autoconf-3510300.tar.gz
|
|
10
|
+
version: "3.51.3"
|
|
11
11
|
files:
|
|
12
|
-
- url: "https://sqlite.org/2026/sqlite-autoconf-
|
|
13
|
-
sha256: "
|
|
12
|
+
- url: "https://sqlite.org/2026/sqlite-autoconf-3510300.tar.gz"
|
|
13
|
+
sha256: "81f5be397049b0cae1b167f2225af7646fc0f82e4a9b3c48c9ea3a533e21d77a"
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/lib/sqlite3/version.rb
CHANGED