sqlite3 2.0.2-x86-linux-musl → 2.0.3-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f9682c34e71d04ccaaacb62e6aa8d5d4956c00fbe3636847ab0d1404407cb25d
4
- data.tar.gz: bdbbcb4016b57a0295dc23fae5373a9c4361ae26e9b0c4e1e267207de36e6581
3
+ metadata.gz: b306a448ecc490d50ab00b2bb50342a74a513e39128537dad8f1616cc0fe03a4
4
+ data.tar.gz: 87fcf9697890b583de611bd3db3c5341f573ee03cf441a10560648869e0d06cc
5
5
  SHA512:
6
- metadata.gz: bc9717c57275e544be12cd0127c0a427ff63aa48cee9ff3dc42efac1a10368e544b218d943faa7012fda789dd2de2da50cf8a435b78c02b2bc68b2aba69199d8
7
- data.tar.gz: f2fb3d67f11f8d4920ca0045426c17c3cecfabed2a3520208e0ba565f1cce5740481e2bf07097119eee2c91fed5aa4fe57de4a413cb4a3b29f26839f27aad3e2
6
+ metadata.gz: 9a617e1956fc45f91c98f1c7e2b47e63b5bc44b10b6f25eb5df9a6f476e4a9caa41053ff3bcd9a161113d565cf0b85f3221a5c5992e17edfdc5ddc68372d0761
7
+ data.tar.gz: 5d5dfbf66199741d4bff77a70f01ff9d7c7f02c849fb9d24cb35046a64f87750e0ddca9489765e4e8a06dd5ba663eb2d2013fd4a18054800a57ef16e4035be2d
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
@@ -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: x86-linux-musl
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