bump to alpha-6

This commit is contained in:
Ty Overby 2017-03-17 18:02:34 -07:00
parent f4c97fde6a
commit 461a694bac
2 changed files with 7 additions and 1 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "bincode" name = "bincode"
version = "1.0.0-alpha5" version = "1.0.0-alpha6"
authors = ["Ty Overby <ty@pre-alpha.com>", "Francesco Mazzoli <f@mazzo.li>", "David Tolnay <dtolnay@gmail.com>", "Daniel Griffen"] authors = ["Ty Overby <ty@pre-alpha.com>", "Francesco Mazzoli <f@mazzo.li>", "David Tolnay <dtolnay@gmail.com>", "Daniel Griffen"]
repository = "https://github.com/TyOverby/bincode" repository = "https://github.com/TyOverby/bincode"

View File

@ -16,3 +16,9 @@
** Moved serde functions into global module ** Moved serde functions into global module
Since serde is the only supported serialization mechanism, it makes sense to have these Since serde is the only supported serialization mechanism, it makes sense to have these
functions available at the top level. 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.