extralite 1.24 → 1.25

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: bbe4f33eced375588c90c6f0e2c3dd5b25ca19e44e3a9b4a20f21e43d7a833ff
4
- data.tar.gz: 709a92b6edd0b54531652d3c572b5dcac21e8db09b6c516c8f07332bb4daa6ee
3
+ metadata.gz: 8a6e8245385b707be08a300ff6bb089291cfa27500fd99f35698f3dc566147e0
4
+ data.tar.gz: 1bc49ffc376a8e8f17da33cda6afdd59299e9d6dac381ef2ff9c7ea8d3a92418
5
5
  SHA512:
6
- metadata.gz: b1c8f1cfc27bfe888f6c92be36f00631dda67471f937c7d94d5b731c94b90fd3b83f322891186f1cc9baf792dafe2df02cd1dc09f8cef7e4030bce79c048f9c1
7
- data.tar.gz: 6e4de82d209255d623bc090b29b5d71da1922a6d70d5b3879a475ace8acb77de8b75ee688c51b45b71c9e9b66c56e71bc341da6377366baf66388cbc261f65b5
6
+ metadata.gz: 1e119afa5f07f499935cd83692cb86c22c548ed7f4e35b46735860349186e66c5b1cd1ca2b32cbc8aa41c1e9106c942d38958b145480b397d838a5d75d32985f
7
+ data.tar.gz: 28f0b76e7ed23e51b9f99f7a8756534163330f909668d7f2d1fa34bd1517ee37ccfdcffe18028fa51cbf427353f313256832daead4ed09a00742a4bd24236744
@@ -8,7 +8,7 @@ jobs:
8
8
  fail-fast: false
9
9
  matrix:
10
10
  os: [ubuntu-latest, macos-latest]
11
- ruby: ['3.0', '3.1', '3.2', truffleruby]
11
+ ruby: ['2.7', '3.0', '3.1', '3.2', truffleruby]
12
12
 
13
13
  name: >-
14
14
  ${{matrix.os}}, ${{matrix.ruby}}
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ # 1.25 2023-03-10
2
+
3
+ - Remove bundled sqlite3 source files from extralite.gemspec
4
+ - Restore testing on Ruby 2.7
5
+
1
6
  # 1.24 2023-02-02
2
7
 
3
8
  - Fix closing database with open statements
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- extralite (1.24)
4
+ extralite (1.25)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -2,6 +2,7 @@ require_relative './gemspec'
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  common_spec(s)
5
+
5
6
  s.name = 'extralite-bundle'
6
7
  s.summary = 'Extra-lightweight SQLite3 wrapper for Ruby with bundled SQLite3'
7
8
  s.extensions = ["ext/extralite/extconf-bundle.rb"]
data/extralite.gemspec CHANGED
@@ -2,6 +2,8 @@ require_relative './gemspec'
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  common_spec(s)
5
+
6
+ s.files.reject! { |fn| fn =~ /^ext\/sqlite3/ }
5
7
  s.name = 'extralite'
6
8
  s.summary = 'Extra-lightweight SQLite3 wrapper for Ruby'
7
9
  s.extensions = ["ext/extralite/extconf.rb"]
@@ -1,3 +1,3 @@
1
1
  module Extralite
2
- VERSION = '1.24'
2
+ VERSION = '1.25'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: extralite
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.24'
4
+ version: '1.25'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sharon Rosner
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-02 00:00:00.000000000 Z
11
+ date: 2023-03-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake-compiler
@@ -107,8 +107,6 @@ files:
107
107
  - ext/extralite/extralite_ext.c
108
108
  - ext/extralite/extralite_sqlite3.c
109
109
  - ext/extralite/prepared_statement.c
110
- - ext/sqlite3/sqlite3.c
111
- - ext/sqlite3/sqlite3.h
112
110
  - extralite-bundle.gemspec
113
111
  - extralite.gemspec
114
112
  - gemspec.rb