sqlite3 1.6.0 → 1.6.1
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 +9 -0
- data/README.md +4 -4
- data/dependencies.yml +7 -8
- data/ext/sqlite3/backup.c +1 -1
- data/ext/sqlite3/database.c +1 -1
- data/ext/sqlite3/sqlite3.c +2 -2
- data/ext/sqlite3/statement.c +1 -1
- data/lib/sqlite3/version.rb +2 -2
- data/ports/archives/sqlite-autoconf-3410000.tar.gz +0 -0
- metadata +4 -4
- data/ports/archives/sqlite-autoconf-3400100.tar.gz +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7558f802bfb759defabcb78f2b9e80655d73a157b66c8e25bff2344ac6724126
|
4
|
+
data.tar.gz: 794d60fe56a786dc61b7c005463b80688a3dff88c17d161700045e2d88c0722e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 67165e69cefad33fd12044d3851b76a8f8d9c0c95456731cd5eadda761fddb9a274638b633fc31a9d0eaf9523c643753f0b9928a49370a370426065671b2059f
|
7
|
+
data.tar.gz: 1bf46233c0c71375397b01b5dd7bae1fa29164cd603c0f070cd6db41381068286f9650437a315a9be436401a48ef9538c16f46ee373c844038140560c7209255
|
data/CHANGELOG.md
CHANGED
data/CONTRIBUTING.md
CHANGED
@@ -12,6 +12,15 @@ As a prerequisite please make sure you have `docker` correctly installed, so tha
|
|
12
12
|
Run `bin/build-gems` which will package gems for all supported platforms, and run some basic sanity tests on those packages using `bin/test-gem-set` and `bin/test-gem-file-contents`.
|
13
13
|
|
14
14
|
|
15
|
+
## Updating the version of libsqlite3
|
16
|
+
|
17
|
+
Update `/dependencies.yml` to reflect:
|
18
|
+
|
19
|
+
- the version of libsqlite3
|
20
|
+
- the URL from which to download
|
21
|
+
- the checksum of the file, which will need to be verified manually (see comments in that file)
|
22
|
+
|
23
|
+
|
15
24
|
## Making a release
|
16
25
|
|
17
26
|
A quick checklist:
|
data/README.md
CHANGED
@@ -73,13 +73,13 @@ end
|
|
73
73
|
|
74
74
|
In v1.5.0 and later, native (precompiled) gems are available for recent Ruby versions on these platforms:
|
75
75
|
|
76
|
-
- `aarch64-linux`
|
77
|
-
- `arm-linux`
|
76
|
+
- `aarch64-linux` (requires: glibc >= 2.29)
|
77
|
+
- `arm-linux` (requires: glibc >= 2.29)
|
78
78
|
- `arm64-darwin`
|
79
79
|
- `x64-mingw32` / `x64-mingw-ucrt`
|
80
|
-
- `x86-linux`
|
80
|
+
- `x86-linux` (requires: glibc >= 2.17)
|
81
81
|
- `x86_64-darwin`
|
82
|
-
- `x86_64-linux`
|
82
|
+
- `x86_64-linux` (requires: glibc >= 2.17)
|
83
83
|
|
84
84
|
If you are using one of these Ruby versions on one of these platforms, the native gem is the recommended way to install sqlite3-ruby.
|
85
85
|
|
data/dependencies.yml
CHANGED
@@ -2,14 +2,13 @@
|
|
2
2
|
:sqlite3:
|
3
3
|
# checksum verified by first checking the published sha3(256) checksum against https://sqlite.org/download.html:
|
4
4
|
#
|
5
|
-
# $ sha3sum -a 256 ports/archives/sqlite-autoconf-
|
6
|
-
#
|
5
|
+
# $ sha3sum -a 256 ports/archives/sqlite-autoconf-3410000.tar.gz
|
6
|
+
# d783ab44a2b44394331d392b8b8d4d2ea4964cbb2befc7c6c649bcfbdb3c9ffe ports/archives/sqlite-autoconf-3410000.tar.gz
|
7
7
|
#
|
8
|
-
#
|
9
|
-
#
|
10
|
-
# 2c5dea207fa508d765af1ef620b637dcb06572afa6f01f0815bd5bbf864b33d9 ports/archives/sqlite-autoconf-3400100.tar.gz
|
8
|
+
# $ sha256sum ports/archives/sqlite-autoconf-3410000.tar.gz
|
9
|
+
# 49f77ac53fd9aa5d7395f2499cb816410e5621984a121b858ccca05310b05c70 ports/archives/sqlite-autoconf-3410000.tar.gz
|
11
10
|
#
|
12
|
-
:version: "3.
|
11
|
+
:version: "3.41.0"
|
13
12
|
:files:
|
14
|
-
- :url: "https://sqlite.org/
|
15
|
-
:sha256: "
|
13
|
+
- :url: "https://sqlite.org/2023/sqlite-autoconf-3410000.tar.gz"
|
14
|
+
:sha256: "49f77ac53fd9aa5d7395f2499cb816410e5621984a121b858ccca05310b05c70"
|
data/ext/sqlite3/backup.c
CHANGED
data/ext/sqlite3/database.c
CHANGED
data/ext/sqlite3/sqlite3.c
CHANGED
@@ -82,7 +82,7 @@ static VALUE threadsafe_p(VALUE UNUSED(klass))
|
|
82
82
|
return INT2NUM(sqlite3_threadsafe());
|
83
83
|
}
|
84
84
|
|
85
|
-
void init_sqlite3_constants()
|
85
|
+
void init_sqlite3_constants(void)
|
86
86
|
{
|
87
87
|
VALUE mSqlite3Constants;
|
88
88
|
VALUE mSqlite3Open;
|
@@ -128,7 +128,7 @@ void init_sqlite3_constants()
|
|
128
128
|
}
|
129
129
|
|
130
130
|
RUBY_FUNC_EXPORTED
|
131
|
-
void Init_sqlite3_native()
|
131
|
+
void Init_sqlite3_native(void)
|
132
132
|
{
|
133
133
|
/*
|
134
134
|
* SQLite3 is a wrapper around the popular database
|
data/ext/sqlite3/statement.c
CHANGED
data/lib/sqlite3/version.rb
CHANGED
Binary file
|
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: 1.6.
|
4
|
+
version: 1.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jamis Buck
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2023-
|
13
|
+
date: 2023-02-22 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: mini_portile2
|
@@ -160,7 +160,7 @@ files:
|
|
160
160
|
- lib/sqlite3/translator.rb
|
161
161
|
- lib/sqlite3/value.rb
|
162
162
|
- lib/sqlite3/version.rb
|
163
|
-
- ports/archives/sqlite-autoconf-
|
163
|
+
- ports/archives/sqlite-autoconf-3410000.tar.gz
|
164
164
|
- test/helper.rb
|
165
165
|
- test/test_backup.rb
|
166
166
|
- test/test_collation.rb
|
@@ -209,7 +209,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
209
209
|
- !ruby/object:Gem::Version
|
210
210
|
version: '0'
|
211
211
|
requirements: []
|
212
|
-
rubygems_version: 3.4.
|
212
|
+
rubygems_version: 3.4.1
|
213
213
|
signing_key:
|
214
214
|
specification_version: 4
|
215
215
|
summary: This module allows Ruby programs to interface with the SQLite3 database engine
|
Binary file
|