diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..43164ea5 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,10 @@ +## 0.7.6 + +NOTES: + +* Syncs `serde_codegen` and `serde_macros` with rustc 1.10.0-nightly (7bddce693 2016-05-27). + +FEATURES: + +* `#[serde(serialize_with=..., deserialize_with=...)]` now supports tuples. #335 +* Serde now can be used in `#[no_std]` environments. #316 diff --git a/serde/Cargo.toml b/serde/Cargo.toml index 3e011c3b..c9c02fc9 100644 --- a/serde/Cargo.toml +++ b/serde/Cargo.toml @@ -8,6 +8,7 @@ repository = "https://github.com/serde-rs/serde" documentation = "https://serde-rs.github.io/serde/serde/" readme = "../README.md" keywords = ["serde", "serialization"] +include = ["Cargo.toml", "src/**/*.rs"] [features] default = ["std"] diff --git a/serde_codegen/Cargo.toml b/serde_codegen/Cargo.toml index 6751eb30..e6ff7317 100644 --- a/serde_codegen/Cargo.toml +++ b/serde_codegen/Cargo.toml @@ -8,6 +8,7 @@ repository = "https://github.com/serde-rs/serde" documentation = "https://github.com/serde-rs/serde" keywords = ["serde", "serialization"] build = "build.rs" +include = ["Cargo.toml", "build.rs", "src/**/*.rs"] [features] default = ["with-syntex"] diff --git a/serde_macros/Cargo.toml b/serde_macros/Cargo.toml index f8dd0d87..5691690f 100644 --- a/serde_macros/Cargo.toml +++ b/serde_macros/Cargo.toml @@ -7,6 +7,7 @@ description = "Macros to auto-generate implementations for the serde framework" repository = "https://github.com/serde-rs/serde" documentation = "https://github.com/serde-rs/serde" keywords = ["serde", "serialization"] +include = ["Cargo.toml", "src/**/*.rs"] [lib] name = "serde_macros"