Skip to content

Commit

Permalink
Fix invalid escape sequence in docstring, update CI for 0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
cjprybol committed Aug 7, 2017
1 parent 49e914a commit 517082c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ os:

julia:
- 0.5
- 0.6
- nightly

notifications:
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

| **Documentation** | **PackageEvaluator** | **Build Status** |
|:-------------------------------------------------------------------------------:|:---------------------------------------------------------------:|:-----------------------------------------------------------------------------------------------:|
| [![][docs-stable-img]][docs-stable-url] [![][docs-latest-img]][docs-latest-url] | [![][pkg-0.4-img]][pkg-0.4-url] [![][pkg-0.5-img]][pkg-0.5-url] | [![][travis-img]][travis-url] [![][appveyor-img]][appveyor-url] [![][codecov-img]][codecov-url] |
| [![][docs-stable-img]][docs-stable-url] [![][docs-latest-img]][docs-latest-url] | [![][pkg-0.4-img]][pkg-0.4-url] [![][pkg-0.5-img]][pkg-0.5-url] [![][pkg-0.6-img]][pkg-0.6-url] | [![][travis-img]][travis-url] [![][appveyor-img]][appveyor-url] [![][codecov-img]][codecov-url] |


## Installation
Expand All @@ -23,7 +23,7 @@ julia> Pkg.add("CSV")

## Project Status

The package is tested against Julia `0.4` and *current* `0.5` on Linux, OS X, and Windows.
The package is tested against Julia `0.4`, `0.5`, and *current* `0.6` on Linux, OS X, and Windows.

## Contributing and Questions

Expand Down Expand Up @@ -53,3 +53,5 @@ Contributions are very welcome, as are feature requests and suggestions. Please
[pkg-0.4-url]: http://pkg.julialang.org/?pkg=CSV
[pkg-0.5-img]: http://pkg.julialang.org/badges/CSV_0.5.svg
[pkg-0.5-url]: http://pkg.julialang.org/?pkg=CSV
[pkg-0.6-img]: http://pkg.julialang.org/badges/CSV_0.6.svg
[pkg-0.6-url]: http://pkg.julialang.org/?pkg=CSV
2 changes: 2 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ environment:
matrix:
- JULIAVERSION: "julialang/bin/winnt/x86/0.5/julia-0.5-latest-win32.exe"
- JULIAVERSION: "julialang/bin/winnt/x64/0.5/julia-0.5-latest-win64.exe"
- JULIAVERSION: "julialang/bin/winnt/x86/0.6/julia-0.6-latest-win32.exe"
- JULIAVERSION: "julialang/bin/winnt/x64/0.6/julia-0.6-latest-win64.exe"
- JULIAVERSION: "julianightlies/bin/winnt/x86/julia-latest-win32.exe"
- JULIAVERSION: "julianightlies/bin/winnt/x64/julia-latest-win64.exe"

Expand Down
2 changes: 1 addition & 1 deletion src/Source.jl
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ Other example invocations may include:
# read in a tab-delimited file
CSV.read(file; delim='\t')
# read in a comma-delimited file with null values represented as '\N', such as a MySQL export
# read in a comma-delimited file with null values represented as '\\N', such as a MySQL export
CSV.read(file; null="\\N")
# manually provided column names; must match # of columns of data in file
Expand Down

0 comments on commit 517082c

Please sign in to comment.