From e5e5c5975cb1049bed3d6c66e295bdb976ddc45d Mon Sep 17 00:00:00 2001 From: Tim Kuehn Date: Sat, 20 Feb 2016 01:02:13 -0800 Subject: [PATCH] Add release notes --- RELEASE_NOTES.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 RELEASE_NOTES.md diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md new file mode 100644 index 0000000..6f0a8dc --- /dev/null +++ b/RELEASE_NOTES.md @@ -0,0 +1,10 @@ +## 1.3 +### Breaking Changes +* The timeout arg to `serve` was replaced with a `Config` struct, which + currently only contains one field, but will be expanded in the future + to allow configuring serialization protocol, and other things. +* `serve` is now a `default fn` on the generated `Service` traits, + and it was renamed `spawn_with_config`. A second `default fn` was added: + `spawn`, which takes no `Config` arg. +### Other Changes +* Expanded items will no longer generate unused warnings.