sqlite3 2.0.2-x64-mingw-ucrt → 2.0.3-x64-mingw-ucrt

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: fdd0a0f216651c556bbe1a6eb22d7655936ca8442ae345e34655db1e1a97afec
4
- data.tar.gz: 90dd9980892d553a66ba0311aacb0ad2b25a7d111412fd6996e1397a930c1074
3
+ metadata.gz: 602f23d027ec016b26e84c9b42b07eadd199d08c6362a9a4063822400ef2779f
4
+ data.tar.gz: ad7d91881a90871bf0242eafb0d4dd79de7b57471b81dc9a5a1f1c4628549e0f
5
5
  SHA512:
6
- metadata.gz: ce55c3337ab815157b619b3309d8e7a5521f8c41b745bff17576a5756ad26b3ed1837210207c787c0f9a29776b1fd37114fe60f6ab4f5a3a1e3c050405e904fb
7
- data.tar.gz: 8e10485c22229b6718f344a6a3be32eb02f55fdaa1ea926ce999572092bc03fb19f9f6629a42dc2ece7b78c96c7b8acc239aca0e3167181f6ed79ab3059c8a9e
6
+ metadata.gz: 5954394bda49800acc3b28352441a8847ca4ccac1173efc7e25460c2a57ab8c698e0390e5447170ace14c324eaa2ca359b4a0d322cada28cdf47dc0cb2729a8b
7
+ data.tar.gz: 222cfc715a4b8e2272fe4339270276a00251e11d72e84e31c4ecf7435796aa3ff069649236a506edb8673e91c8f50288518a5f4f47e8cac8ec66502530d4d8e4
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: x64-mingw-ucrt
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