Skip to content

Commit

Permalink
Update to TextParse 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
davidanthoff committed Dec 13, 2019
1 parent 9e1c074 commit 7638453
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# CSVFiles.jl v1.0.0
* Renamed `nrows` argument to `row_estimate`

# CSVFiles.jl v0.16.1
* Fix a bug in the write functionality
* Add proper bounds to all dependencies
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ IteratorInterfaceExtensions = "0.1.1, 1"
TableShowUtils = "0.1.1, 0.2"
TableTraits = "0.4, 1"
TableTraitsUtils = "0.2.1, 0.3, 0.4, 1"
TextParse = "0.7, 0.8, 0.9"
TextParse = "1"
julia = "1"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ load(File(format"CSV", "csv_file.txt"))
* ``spacedelim``: a ``Bool`` indicating whether columns are space delimited. If ``true``, the value of ``delim`` is ignored
* ``quotechar``: character used to quote strings, defaults to "
* ``escapechar``: character used to escape quotechar in strings. (could be the same as quotechar)
* ``nrows``: number of rows in the file. Defaults to 0 in which case we try to estimate this.
* ``row_estimate``: estimated number of rows in the file. Defaults to 0 in which case we try to estimate this.
* ``skiplines_begin``: number of rows to skip at the beginning of the file.
* ``header_exists``: boolean specifying whether CSV file contains a header
* ``colnames``: manually specified column names. Could be a vector or a dictionary from Int index (the column) to String column name.
Expand Down

0 comments on commit 7638453

Please sign in to comment.