sqlite3 2.9.2.rc2-x86-linux-musl → 2.9.2-x86-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 +1 -1
- data/CONTRIBUTING.md +16 -11
- 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: 368741de35c43a3e0b44d2cbfb6c2942fa1ad0259f5ab46bc492101db4a133b9
|
|
4
|
+
data.tar.gz: 68bd804e19ea632445968e002a1f4556aa13b159d00cb829028d565179f0226a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 27d31615ce3e04ccb5b381039cada54a38adbf677c6be8508c5021896f2655235b16dcfdda3527761f15c7bfaff588a28f1259cacdce52cc60f2a3b9bb403237
|
|
7
|
+
data.tar.gz: '040963a0a424900db827e7eebdc321edead276d2287c1bac160764e11f937ec1f24b2fbea5cbdfbf65c53145c06c5c4a447d60972d79a88cf6f2471a8f46fe12'
|
data/CHANGELOG.md
CHANGED
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/lib/sqlite3/version.rb
CHANGED