summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPierre-Henri Symoneaux <pierre.henri.symoneaux@gmail.com>2018-08-09 17:46:45 +0200
committerPierre-Henri Symoneaux <pierre.henri.symoneaux@gmail.com>2018-08-09 17:46:45 +0200
commitf5c68050088c717ecfbee7570c1c9a2106acecaf (patch)
tree924fb95a4c24c702f9e696941404b81b917187b6
parent8a40e2a82e751e60fdd2782bf2776db0e753b587 (diff)
Removed rust 1.18 and 1.19 from supported and tested list
-rw-r--r--.travis.yml7
-rw-r--r--Cargo.toml4
-rw-r--r--README.md4
3 files changed, 8 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml
index dcad927..42f515f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,12 +1,13 @@
language: rust
rust:
-- 1.18.0
-- 1.19.0
- 1.20.0
- 1.21.0
- 1.22.1
- 1.23.0
-- 1.24.0
+- 1.24.1
+- 1.25.0
+- 1.26.2
+- 1.27.2
- stable
- beta
- nightly
diff --git a/Cargo.toml b/Cargo.toml
index ac8754c..7697053 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "prettytable-rs"
-version = "0.7.0"
+version = "0.7.1"
description = "A library for printing pretty formatted tables in terminal"
homepage = "https://github.com/phsym/prettytable-rs"
repository = "https://github.com/phsym/prettytable-rs"
@@ -34,4 +34,4 @@ term = "^0.5"
lazy_static = "1"
atty = "^0.2"
encode_unicode = "^0.3"
-csv = { version = "^0.15", optional = true }
+csv = { version = "1", optional = true }
diff --git a/README.md b/README.md
index a535b23..f1bfbb2 100644
--- a/README.md
+++ b/README.md
@@ -36,10 +36,10 @@ Include the library as a dependency to your project by adding the following line
```toml
[dependencies]
-prettytable-rs = "^0.6"
+prettytable-rs = "^0.7"
```
-The library requires at least `rust v1.18.0`.
+The library requires at least `rust v1.20.0`.
## Basic usage