From 31f68efe85bef0fbf3cd3cc2796ce488da0609a8 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 16 Feb 2019 11:42:51 -0800 Subject: [PATCH] Remove outdated changelist --- Cargo.toml | 2 +- changelist.org | 27 --------------------------- 2 files changed, 1 insertion(+), 28 deletions(-) delete mode 100644 changelist.org diff --git a/Cargo.toml b/Cargo.toml index f75ff30..8512a96 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "bincode" version = "1.1.2" # remember to update html_root_url authors = ["Ty Overby ", "Francesco Mazzoli ", "David Tolnay ", "Daniel Griffen"] -exclude = ["logo.png", "tests/*", "examples/*", ".gitignore", ".travis.yml", "changelist.org"] +exclude = ["logo.png", "tests/*", "examples/*", ".gitignore", ".travis.yml"] publish = true diff --git a/changelist.org b/changelist.org deleted file mode 100644 index 391cae9..0000000 --- a/changelist.org +++ /dev/null @@ -1,27 +0,0 @@ -* 1.0.0 -** Removed depricated rustc-serialize support - Rustc-serialize was a stopgap until projects like Serde were able to catch up. - With macros stabilization on its way, we are able to switch to serde without any - big user-friendliness issues. Major congratulations to Serde for coming this far! - -** Moved Refbox, Strbox and Slicebox into a "refbox" module - Refbox, Strbox and Slicebox are still an integral piece of Bincode, but since - they are mainly used by power-users, this move will make the crate API more organized - and easier for new users to understand. - -** Upgraded to Serde 0.9.* - Serde 0.9.* gives us a better API surface area and allows use of procedural macros for - deriving serialize and deserialize implemenetations. - -** Moved serde functions into global module - Since serde is the only supported serialization mechanism, it makes sense to have these - functions available at the top level. - -** Added the ability to chose your own endian encoding. - This functionality is located in the endian_choice module. - -** Changed SizeLimit to be a trait instead of an enum - Mostly for performance reasons. - -** Removed RefBox / StrBox / SliceBox - Since rustc-serialize support was phased out, you can use `Cow` with serde.