diff --git a/.travis.yml b/.travis.yml index 725fa91cba..e7d14364e4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,6 +14,8 @@ script: - cargo test --verbose --no-default-features - cargo build --verbose - cargo test --verbose +- cargo build --verbose --all-features +- cargo test --verbose --all-features env: global: - RUSTFLAGS="-C link-dead-code" diff --git a/LICENSE.txt b/LICENSE.txt index 5f2eb82703..a1f361b6b4 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) 2015, Pierre-Henri Symoneaux +Copyright (c) 2019, Pierre-Henri Symoneaux All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/README.md b/README.md index dca2c2abfa..d702cf8921 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ A formatted and aligned table printer library for [Rust](https://www.rust-lang.org). -*Copyright © 2018 Pierre-Henri Symoneaux* +*Copyright © 2019 Pierre-Henri Symoneaux* > THIS SOFTWARE IS DISTRIBUTED WITHOUT ANY WARRANTY
> Check LICENSE.txt file for more information.
diff --git a/appveyor.yml b/appveyor.yml index f653c4b68d..7f72c1eeee 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -15,7 +15,9 @@ install: build_script: - cargo build --verbose - cargo build --verbose --no-default-features + - cargo build --verbose --all-features test_script: - cargo test --verbose - cargo test --verbose --no-default-features + - cargo test --verbose --all-features