sqlite3 2.9.2.rc2 → 2.9.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 29f1c007636cb699bb93e2d0151ee490d1e911af8d1756d1a8cd8e3b73e7093d
4
- data.tar.gz: 7b2420ee5dbeff3956b91d5895e161f019208dba18eae5ff1b00e3fba70c5db7
3
+ metadata.gz: 7f998aa76b7c66db92425a4d4a0c3241d7a4001b0ec01d2909d86bfc4c144967
4
+ data.tar.gz: 765dc127bc9b2aebad2df17f25ad8e8082ca72fcbd15286e4efd9d9a92b35c6d
5
5
  SHA512:
6
- metadata.gz: 1b7712440b9209486952c5439a7788d31e5db7876d3755f7321e017dd92a9b62f3227acab11d5314378c82d69b9b007a714504a2cfbb1f05b5dd00c66c28c72c
7
- data.tar.gz: bd95929cd276111b89529497ae2216e5f4feedd17535f1ea50b3e920bd7bdba1b07f4fb97e3a23a7d60dfcbbf72a1765e57cbcea28a41c58119aa9c75340e839
6
+ metadata.gz: 06a88b2808529658327f7a153989cf78a3889ee3869cd127302600045933545f0473722b3263b7fabd7973a41a980aabbb90adb99ba21b84c580df0c5a3efdcf
7
+ data.tar.gz: 557bb50cef01094a87bacaf3897c2033f84e354a790dabea18f30e5385b9050636350e80b3d45efbe647f6b0389b9862b3422e87a249fd004693dda45df4e171
data/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # sqlite3-ruby Changelog
2
2
 
3
- ## 2.9.2 / 2026-03-14
3
+ ## 2.9.2 / 2026-03-15
4
4
 
5
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
6
 
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
- - [ ] make sure CI is green!
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
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
@@ -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.9.2.rc2"
3
+ VERSION = "2.9.2"
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.9.2.rc2
4
+ version: 2.9.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jamis Buck