sqlite3 2.0.2-x86_64-darwin → 2.0.3-x86_64-darwin

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 10590732500851686cda99697c8065ed5a335f723ec37b788d23d0915ff550af
4
- data.tar.gz: db5053c486946e38141dec21b73de43cb442a0a20648b0b5266fa79410f71eec
3
+ metadata.gz: d6a52c4009b469cd1a159f462576f1e33faa97c09c176b52f4657cc72a460c78
4
+ data.tar.gz: 30afec44e9a710362c86f272410233498cbe5008f6e385929d7383504542fce2
5
5
  SHA512:
6
- metadata.gz: 010cd40a4a8f2f3a4f92ebc018e9e8875e33757030e510104c50b86eaf890a8c7055125e79368fb5bcd6db5985f817c51a552b1ed96b82a77efb6ea9028719de
7
- data.tar.gz: ffeb9b1d228c66485301f5c9d215b3adc3a8a32d061f6776e3954cc1383f4301ba025e7371e6c124c651716b7374d78879d585470d9cb647fc3bc416be8b2880
6
+ metadata.gz: fdaafb0089eaa164ed0dafce226d2c0bc8e004191f59c8697a0653e5cc0493f4c626a74ed70d11e2333b76901d0e693b755dbfdcfe3a253da02f12e582070a63
7
+ data.tar.gz: 3561c48cfec5596dfa5b84cd138dd53885cc84ba048947abb977170f1453aaeed99dca79d7452067f7e374d8d3f42d9474215e00ff56119e7d4132329eeced79
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: x86_64-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