sqlite3 2.0.2-arm64-darwin → 2.0.3-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: e6eec566c48c85e88e16c3dc4e53375c79021f03e032b5b34771fd4843eeb49d
4
- data.tar.gz: c19fc70b2670372d1284f1c1ad3a84eb3a5cebf80c1343cf4d1ffdfa044f6211
3
+ metadata.gz: bb0492123ee33b722a9594ddab130c6974e66c7add1fec793915be72bfccbfc4
4
+ data.tar.gz: b62098e28f6205876b27bc62d475166247b4df8ccc822340ecdbe63ca7310e2f
5
5
  SHA512:
6
- metadata.gz: 2eecf36de292a47355a458c138474d67534f546ff218eea0e9d9c9929ad27550fc3b9a794e518416f3ec84d4fda31f375830ed1ab48be10226a3603389f4daa8
7
- data.tar.gz: e1439f1c7cefe6693a605a03486ea685aa03edf32f3db69921f6a6e064ae3b7ddc0d69e6b4abe6d8db7c40b57fa74a5fbf2690c55ed171ee778fc81774b55918
6
+ metadata.gz: a282f84876f2dad3feb671e379c65d13ac42986147ad4f1c969d5305cb2c4fc406c7c0618950bd5597aff824d9f6f3132cdc23d2011d22bd08be8c11b1219c80
7
+ data.tar.gz: ec017bb218a58c176809fbb8dfaf2d184917213ed297d2fba9672ec19e626da019f0d9cf4e6214a98db60d6f775ef6ea354038a4a0deef57fb9e6815a183245a
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
Binary file
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: arm64-darwin
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