sqlite3 2.0.2-x64-mingw32 → 2.0.3-x64-mingw32

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: 8622cd8173474143ef95f53b01b1fe54a600fdbb2f081bef04963f15abe8a414
4
- data.tar.gz: d67d222cfa886a3b79fc71477861f9db7565329d951cbe221b346274aa6f6e50
3
+ metadata.gz: 12ea7c513dbb35914d32662fcad17c19901d49c1f3e22ce1d193b81d4981abed
4
+ data.tar.gz: a9c24eeafa3b155477d2b819d14f74f5dc85151a071c05d7a55d8bc79fd778a9
5
5
  SHA512:
6
- metadata.gz: 3f638df09f42a176111b219aacb1e74232fc88174806dcaf1efd04c511ef0a7bedd500e8a5f7c3b207ee8e4f924093e485547140dd186152331a1ddd8fca799d
7
- data.tar.gz: 8d395a7d6c07b8f94b464ad36e69f475ff8fb084c8eda29abc64d02b16d4b70b695523742002f98d404b2b581874e0c14d497f89f6606250ac76c3bebf0787c6
6
+ metadata.gz: d1a99f15ed061f303f46f989651a2fe644078c415a6a879feeb92c3150570d39114b1b7f12f9d0340f744fcf0ce3263429b19540a4374f875181e6c7c7366649
7
+ data.tar.gz: a3a8f4a106d32a62c9e477a75440f28cfdeb20a3bedbf194434b18111407d92c809dc5ca15abaa4011db6791d9845789abd7451e53b852d33add2330a32dba9a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # sqlite3-ruby Changelog
2
2
 
3
+ ## 2.0.3 / 2024-07-29
4
+
5
+ ### Improved
6
+
7
+ - `Database#quote` avoids allocating strings where reusing frozen strings is preferable. #548 @casperisfine
8
+
9
+
3
10
  ## 2.0.2 / 2024-05-23
4
11
 
5
12
  ### Dependencies
Binary file
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "sqlite3/constants"
2
4
  require "sqlite3/errors"
3
5
  require "sqlite3/pragmas"
@@ -1,3 +1,3 @@
1
1
  module SQLite3
2
- VERSION = "2.0.2"
2
+ VERSION = "2.0.3"
3
3
  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.0.2
4
+ version: 2.0.3
5
5
  platform: x64-mingw32
6
6
  authors:
7
7
  - Jamis Buck
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2024-05-23 00:00:00.000000000 Z
14
+ date: 2024-07-29 00:00:00.000000000 Z
15
15
  dependencies: []
16
16
  description: |
17
17
  Ruby library to interface with the SQLite3 database engine (http://www.sqlite.org). Precompiled