Skip to content
This repository was archived by the owner on Jun 28, 2021. It is now read-only.

Commit 76d96e1

Browse files
committed
Bump to version 4.4.5
1 parent fecf171 commit 76d96e1

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* max_comment_size: new option
88
* promise: new API module
99

10-
## Trunk
10+
## Version 4.4.5
1111

1212
* ts: add buffer as allowed type for input, fix #248
1313

lib/es5/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import * as stream from "stream";
66

77
export = parse;
88

9-
declare function parse(input: string, options?: parse.Options, callback?: parse.Callback): parse.Parser;
10-
declare function parse(input: string, callback?: parse.Callback): parse.Parser;
9+
declare function parse(input: Buffer | string, options?: parse.Options, callback?: parse.Callback): parse.Parser;
10+
declare function parse(input: Buffer | string, callback?: parse.Callback): parse.Parser;
1111
declare function parse(options?: parse.Options, callback?: parse.Callback): parse.Parser;
1212
declare function parse(callback?: parse.Callback): parse.Parser;
1313
declare namespace parse {

lib/es5/sync.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ import * as csvParse from './index';
22

33
export = parse;
44

5-
declare function parse(input: string, options?: csvParse.Options): any;
5+
declare function parse(input: Buffer | string, options?: csvParse.Options): any;
66
declare namespace parse {}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "4.4.4",
2+
"version": "4.4.5",
33
"name": "csv-parse",
44
"description": "CSV parsing implementing the Node.js `stream.Transform` API",
55
"keywords": [

0 commit comments

Comments
 (0)