Skip to content
This repository has been archived by the owner on Jan 22, 2019. It is now read-only.

Commit

Permalink
add release notes wrt #131
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Aug 25, 2016
1 parent 236e643 commit f0e663e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
7 changes: 7 additions & 0 deletions release-notes/VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ Project: jackson-dataformat-csv
=== Releases ===
------------------------------------------------------------------------

2.9.0 (not yet released)

#130: Add fluent addColumns operation to CsvSchema.Builder
(contributed by Peter A)

2.8.2 (not yet released)

2.8.1 (20-Jul-2016)

No changes since 2.8.0.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -466,12 +466,20 @@ public Builder addColumn(Column c) {
_columns.add(c);
return this;
}

/**
* @since 2.9
*/
public Builder addColumns(Iterable<Column> cs) {
for (Column c : cs) {
_columns.add(c);
}
return this;
}

/**
* @since 2.9
*/
public Builder addColumns(Iterable<String> names, ColumnType type) {
Builder result = this;
for (String name : names) {
Expand Down

0 comments on commit f0e663e

Please sign in to comment.