Skip to content

Commit

Permalink
csv 1.0.0-beta.4
Browse files Browse the repository at this point in the history
  • Loading branch information
BurntSushi committed Jul 26, 2017
1 parent 3aaef03 commit 024e52a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "csv"
version = "1.0.0-beta.3" #:version
version = "1.0.0-beta.4" #:version
authors = ["Andrew Gallant <[email protected]>"]
description = "Fast CSV parsing with support for serde."
documentation = "https://burntsushi.net/rustdoc/csv/"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Dual-licensed under MIT or the [UNLICENSE](https://unlicense.org).
https://docs.rs/csv

If you're new to Rust, the
[tutorial](https://docs.rs/csv/1.0.0-beta.3/csv/tutorial/index.html)
[tutorial](https://docs.rs/csv/1.0.0-beta.4/csv/tutorial/index.html)
is a good place to start.


Expand All @@ -24,7 +24,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
csv = "1.0.0-beta.3"
csv = "1.0.0-beta.4"
```

and this to your crate root:
Expand All @@ -39,7 +39,7 @@ This example shows how to read CSV data from stdin and print each record to
stdout.

There are more examples in the
[cookbook](https://docs.rs/csv/1.0.0-beta.3/csv/cookbook/index.html).
[cookbook](https://docs.rs/csv/1.0.0-beta.4/csv/cookbook/index.html).

```rust
extern crate csv;
Expand Down
2 changes: 1 addition & 1 deletion csv-index/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ bench = false

[dependencies]
byteorder = "1"
csv = { path = "..", version = "1.0.0-beta.3" }
csv = { path = "..", version = "1.0.0-beta.4" }

[profile.release]
debug = true
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Add this to your `Cargo.toml`:
```toml
[dependencies]
csv = "1.0.0-beta.3"
csv = "1.0.0-beta.4"
```
and this to your crate root:
Expand Down
4 changes: 2 additions & 2 deletions src/tutorial.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ $ cd csvtutor
```
Once inside `csvtutor`, open `Cargo.toml` in your favorite text editor and add
`csv = "1.0.0-beta.3"` to your `[dependencies]` section. At this point, your
`csv = "1.0.0-beta.4"` to your `[dependencies]` section. At this point, your
`Cargo.toml` should look something like this:
```text
Expand All @@ -63,7 +63,7 @@ version = "0.1.0"
authors = ["Your Name"]
[dependencies]
csv = "1.0.0-beta.3"
csv = "1.0.0-beta.4"
```
Next, let's build your project. Since you added the `csv` crate as a
Expand Down

0 comments on commit 024e52a

Please sign in to comment.