From 9d96f95ddd8ad3fc274f94b4cf2de4ea58ec4884 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Wed, 27 Jul 2016 23:51:48 -0700 Subject: [PATCH] Remove old upgrading tips --- README.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/README.md b/README.md index 6fe8a52c..bdad6024 100644 --- a/README.md +++ b/README.md @@ -812,12 +812,6 @@ features, and use `default-features = false` in your `Cargo.toml`: If you only use `default-features = false`, you will receive a stock `no_std` serde with no support for any of the collection types. -Upgrading from Serde 0.6 -======================== - -* `#[serde(skip_serializing_if_none)]` was replaced with `#[serde(skip_serializing_if="Option::is_none")]`. -* `#[serde(skip_serializing_if_empty)]` was replaced with `#[serde(skip_serializing_if="Vec::is_empty")]`. - Serialization Formats Using Serde =================================