Bump the version

This commit is contained in:
Oliver Schneider 2017-02-27 09:48:13 +01:00
parent b9f183d31f
commit 1369569ac7
No known key found for this signature in database
GPG Key ID: A69F8D225B3AD7D9
4 changed files with 8 additions and 8 deletions

View File

@ -1,12 +1,12 @@
# Change Log
All notable changes to this project will be documented in this file.
* New [`zero_ptr`] lint
* New [`never_loop`] lint
* New [`mut_from_ref`] lint
## 0.0.115 — 2017-02-27
* Rustup to *rustc 1.17.0-nightly (60a0edc6c 2017-02-26)*
* New lints: [`zero_ptr`, `never_loop`, `mut_from_ref`]
## 0.0.114 — 2017-02-08
* Rustup to rustc 1.17.0-nightly (c49d10207 2017-02-07)
* Rustup to *rustc 1.17.0-nightly (c49d10207 2017-02-07)*
* Tests are now ui tests (testing the exact output of rustc)
## 0.0.113 — 2017-02-04

View File

@ -1,6 +1,6 @@
[package]
name = "clippy"
version = "0.0.114"
version = "0.0.115"
authors = [
"Manish Goregaokar <manishsmail@gmail.com>",
"Andre Bogus <bogusandre@gmail.com>",
@ -30,7 +30,7 @@ test = false
[dependencies]
# begin automatic update
clippy_lints = { version = "0.0.114", path = "clippy_lints" }
clippy_lints = { version = "0.0.115", path = "clippy_lints" }
# end automatic update
cargo_metadata = "0.1.1"

View File

@ -180,7 +180,7 @@ transparently:
## Lints
There are 192 lints included in this crate:
There are 194 lints included in this crate:
name | default | triggers on
-----------------------------------------------------------------------------------------------------------------------|---------|----------------------------------------------------------------------------------------------------------------------------------

View File

@ -1,7 +1,7 @@
[package]
name = "clippy_lints"
# begin automatic update
version = "0.0.114"
version = "0.0.115"
# end automatic update
authors = [
"Manish Goregaokar <manishsmail@gmail.com>",