csv 3.3.1 → 3.3.2

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: 810bc9a744fd02ede6fd069e5fa11c42307533f070f096b0614466a62c37bf1d
4
- data.tar.gz: a69e61cc7f0e81f00a8e1d22a33bd90e43e7859444c866393dda01bb61426630
3
+ metadata.gz: bb25f2d0582cf6f7fd0677b63468bf268cc362f8fc45209376a08d3f93995b01
4
+ data.tar.gz: 32b3a6a958da3fbf005d0aea7217393befefe0da204ddf92b728c5c9514a1cce
5
5
  SHA512:
6
- metadata.gz: 69d5f90a13cb9f4411a2d4b127211cabd060889f3f6f55de72061cda4994b62160ca264a6e7601639f056d1c0a148120a24c4b1385e10e66e2425adb01d7be73
7
- data.tar.gz: b0d2bf9c262db845b5a8f7af157ef127d5856585af3bb0ea1dd420b2aee114ad6cdf870f246f6f6a80ebaac30634cab3745fe37669799e559d0dfb89e2d7b3ed
6
+ metadata.gz: 77a56a3847636b8297007fa175c8e503933471b16ad8c34f3f676bc37af963d47101ee21eeb805cf1dd80201bce7117c20840bb94d25effb2e6bd299b2a5263d
7
+ data.tar.gz: 04b07a2b4f9dd23062caa1b7cfe0fe7e85c45176379806249abdf2151f866d919a1dda7337c0bef1459f5ebee846fde27efb1b67664fdd3f5ab15301a7ecffc1
data/NEWS.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # News
2
2
 
3
+ ## 3.3.2 - 2024-12-21
4
+
5
+ ### Fixes
6
+
7
+ * Fixed a parse bug with a quoted line with `col_sep` and an empty
8
+ line. This was introduced in 3.3.1.
9
+ * GH-324
10
+ * Reported by stoodfarback
11
+
12
+ ### Thanks
13
+
14
+ * stoodfarback
15
+
3
16
  ## 3.3.1 - 2024-12-15
4
17
 
5
18
  ### Improvements
data/lib/csv/parser.rb CHANGED
@@ -1041,7 +1041,7 @@ class CSV
1041
1041
  quoted_fields << @quoted_column_value
1042
1042
  elsif parse_row_end
1043
1043
  if row.empty? and value.nil?
1044
- emit_row(row, &block) unless @skip_blanks
1044
+ emit_row([], &block) unless @skip_blanks
1045
1045
  else
1046
1046
  row << value
1047
1047
  quoted_fields << @quoted_column_value
data/lib/csv/version.rb CHANGED
@@ -2,5 +2,5 @@
2
2
 
3
3
  class CSV
4
4
  # The version of the installed library.
5
- VERSION = "3.3.1"
5
+ VERSION = "3.3.2"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: csv
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.1
4
+ version: 3.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Edward Gray II
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2024-12-15 00:00:00.000000000 Z
12
+ date: 2024-12-21 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: The CSV library provides a complete interface to CSV files and data.
15
15
  It offers tools to enable you to read and write to and from Strings or IO objects,