sqlite3 1.6.0.rc2-arm64-darwin → 1.6.1-arm64-darwin

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: 0d6c3632e0d541acb54fef9de1d6cac0399e57159eaf7ffa7dc1fa2a0edca684
4
- data.tar.gz: a3d7e23fd5c61be751df66e7c25696df21ab21208f6ef1871f6ba44a17349f58
3
+ metadata.gz: a790b814d34dae62e8dec240c51f7586ed57cbfdb3cfad3019eae56ab4e710b3
4
+ data.tar.gz: 817404245fde6c731794b1f0bbd02bb2e7f95f60ac9ca873656b5e7008225018
5
5
  SHA512:
6
- metadata.gz: 01bf7e271d660062bc2d9a058244c046ce472395ef198fb0abecb94993be4b0788d18c821243fb44662050da0de0f3dc5d1c38945986a917b03556e4c7602539
7
- data.tar.gz: 7ade76bcda72e9323daa9ce6fd04d04d287359240e9da326feb9e1e796f646db10ce7ac3d8baeb0c28c1aaaad9f75b45c740f4b3761f8eed557c5d020b702a25
6
+ metadata.gz: 5b54877c188ab51a3704faec39f6953470a1005ae93655c5f9e3b45a9bc276fc546e5199cfcee303a3e56bb8267689522488e27d82d94b379b11f6a7746600bc
7
+ data.tar.gz: 9975dcf2d3e79678c8d7cf2c1e256d4450021a5781e41e9edc47455c1d2fdb1467017450637c7e4e15278fb8e0b9dd328efd1c8c29784a2ad0468260f1da24b8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  # sqlite3-ruby Changelog
2
2
 
3
- ## 1.6.0 / unreleased
3
+ ## 1.6.1 / 2023-02-22
4
+
5
+ ### Dependencies
6
+
7
+ * Vendored sqlite is updated to [v3.41.0](https://sqlite.org/releaselog/3_41_0.html).
8
+
9
+
10
+ ## 1.6.0 / 2023-01-13
4
11
 
5
12
  ### Ruby
6
13
 
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-3400100.tar.gz
6
- # 3136db4bcd9e9e1e485c291380a3d86f0f21cae0eff9f714c0ef4821e2e5cdf7 ports/archives/sqlite-autoconf-3400100.tar.gz
5
+ # $ sha3sum -a 256 ports/archives/sqlite-autoconf-3410000.tar.gz
6
+ # d783ab44a2b44394331d392b8b8d4d2ea4964cbb2befc7c6c649bcfbdb3c9ffe ports/archives/sqlite-autoconf-3410000.tar.gz
7
7
  #
8
- # juno in sqlite3-ruby on  flavorjones-update-sqlite-3.40.1 [$!?] via 💎 v3.1.2
9
- # $ sha256sum ports/archives/sqlite-autoconf-3400100.tar.gz
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.40.1"
11
+ :version: "3.41.0"
13
12
  :files:
14
- - :url: "https://sqlite.org/2022/sqlite-autoconf-3400100.tar.gz"
15
- :sha256: "2c5dea207fa508d765af1ef620b637dcb06572afa6f01f0815bd5bbf864b33d9"
13
+ - :url: "https://sqlite.org/2023/sqlite-autoconf-3410000.tar.gz"
14
+ :sha256: "49f77ac53fd9aa5d7395f2499cb816410e5621984a121b858ccca05310b05c70"
data/ext/sqlite3/backup.c CHANGED
@@ -150,7 +150,7 @@ static VALUE pagecount(VALUE self)
150
150
  return INT2NUM(sqlite3_backup_pagecount(ctx->p));
151
151
  }
152
152
 
153
- void init_sqlite3_backup()
153
+ void init_sqlite3_backup(void)
154
154
  {
155
155
  #if 0
156
156
  VALUE mSqlite3 = rb_define_module("SQLite3");
@@ -800,7 +800,7 @@ static VALUE rb_sqlite3_open16(VALUE self, VALUE file)
800
800
  return INT2NUM(status);
801
801
  }
802
802
 
803
- void init_sqlite3_database()
803
+ void init_sqlite3_database(void)
804
804
  {
805
805
  #if 0
806
806
  VALUE mSqlite3 = rb_define_module("SQLite3");
@@ -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
@@ -418,7 +418,7 @@ static VALUE database_name(VALUE self, VALUE index)
418
418
 
419
419
  #endif
420
420
 
421
- void init_sqlite3_statement()
421
+ void init_sqlite3_statement(void)
422
422
  {
423
423
  cSqlite3Statement = rb_define_class_under(mSqlite3, "Statement", rb_cObject);
424
424
 
Binary file
Binary file
Binary file
Binary file
@@ -1,12 +1,12 @@
1
1
  module SQLite3
2
2
 
3
- VERSION = "1.6.0.rc2"
3
+ VERSION = "1.6.1"
4
4
 
5
5
  module VersionProxy
6
6
  MAJOR = 1
7
7
  MINOR = 6
8
- TINY = 0
9
- BUILD = "rc2"
8
+ TINY = 1
9
+ BUILD = nil
10
10
 
11
11
  STRING = [ MAJOR, MINOR, TINY, BUILD ].compact.join( "." )
12
12
 
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.0.rc2
4
+ version: 1.6.1
5
5
  platform: arm64-darwin
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-01-04 00:00:00.000000000 Z
13
+ date: 2023-02-22 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: minitest
@@ -44,16 +44,16 @@ dependencies:
44
44
  name: rake-compiler-dock
45
45
  requirement: !ruby/object:Gem::Requirement
46
46
  requirements:
47
- - - "~>"
47
+ - - '='
48
48
  - !ruby/object:Gem::Version
49
- version: 1.2.1
49
+ version: 1.3.0
50
50
  type: :development
51
51
  prerelease: false
52
52
  version_requirements: !ruby/object:Gem::Requirement
53
53
  requirements:
54
- - - "~>"
54
+ - - '='
55
55
  - !ruby/object:Gem::Version
56
- version: 1.2.1
56
+ version: 1.3.0
57
57
  - !ruby/object:Gem::Dependency
58
58
  name: rdoc
59
59
  requirement: !ruby/object:Gem::Requirement
@@ -194,9 +194,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
194
194
  version: 3.3.dev
195
195
  required_rubygems_version: !ruby/object:Gem::Requirement
196
196
  requirements:
197
- - - ">"
197
+ - - ">="
198
198
  - !ruby/object:Gem::Version
199
- version: 1.3.1
199
+ version: '0'
200
200
  requirements: []
201
201
  rubygems_version: 3.3.26
202
202
  signing_key: