From 461a694bacadb9168c9c07f424da15433857b0bd Mon Sep 17 00:00:00 2001 From: Ty Overby Date: Fri, 17 Mar 2017 18:02:34 -0700 Subject: [PATCH] bump to alpha-6 --- Cargo.toml | 2 +- changelist.org | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b9b1f96..03e0bb9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bincode" -version = "1.0.0-alpha5" +version = "1.0.0-alpha6" authors = ["Ty Overby ", "Francesco Mazzoli ", "David Tolnay ", "Daniel Griffen"] repository = "https://github.com/TyOverby/bincode" diff --git a/changelist.org b/changelist.org index 761068b..f568019 100644 --- a/changelist.org +++ b/changelist.org @@ -16,3 +16,9 @@ ** 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.