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.