Skip to content

Commit

Permalink
Update Importer posts
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Dec 22, 2024
1 parent b71deea commit 85f9c5e
Show file tree
Hide file tree
Showing 40 changed files with 18 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# News

## 3.3.2 - 2024-12-21

### Fixes

* Fixed a parse bug with a quoted line with `col_sep` and an empty
line. This was introduced in 3.3.1.
* GH-324
* Reported by stoodfarback

### Thanks

* stoodfarback

## 3.3.1 - 2024-12-15

### Improvements
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1041,7 +1041,7 @@ def parse_quotable_robust(&block)
quoted_fields << @quoted_column_value
elsif parse_row_end
if row.empty? and value.nil?
emit_row(row, &block) unless @skip_blanks
emit_row([], &block) unless @skip_blanks
else
row << value
quoted_fields << @quoted_column_value
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

class CSV
# The version of the installed library.
VERSION = "3.3.1"
VERSION = "3.3.2"
end
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# -*- encoding: utf-8 -*-
# stub: csv 3.3.1 ruby lib
# stub: csv 3.3.2 ruby lib

Gem::Specification.new do |s|
s.name = "csv".freeze
s.version = "3.3.1"
s.version = "3.3.2"

s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib".freeze]
s.authors = ["James Edward Gray II".freeze, "Kouhei Sutou".freeze]
s.date = "2024-12-15"
s.date = "2024-12-21"
s.description = "The CSV library provides a complete interface to CSV files and data. It offers tools to enable you to read and write to and from Strings or IO objects, as needed.".freeze
s.email = [nil, "[email protected]".freeze]
s.extra_rdoc_files = ["LICENSE.txt".freeze, "NEWS.md".freeze, "README.md".freeze, "doc/csv/recipes/filtering.rdoc".freeze, "doc/csv/recipes/generating.rdoc".freeze, "doc/csv/recipes/parsing.rdoc".freeze, "doc/csv/recipes/recipes.rdoc".freeze]
Expand Down

0 comments on commit 85f9c5e

Please sign in to comment.