From e5e5c5975cb1049bed3d6c66e295bdb976ddc45d Mon Sep 17 00:00:00 2001 From: Tim Kuehn Date: Sat, 20 Feb 2016 01:02:13 -0800 Subject: [PATCH 1/5] 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. From 5973e54f62360014194926e15e1ed8a122deb06d Mon Sep 17 00:00:00 2001 From: Tim Kuehn Date: Sat, 20 Feb 2016 01:04:40 -0800 Subject: [PATCH 2/5] Fix markdown --- RELEASE_NOTES.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 6f0a8dc..9311c08 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,4 +1,5 @@ ## 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 @@ -6,5 +7,6 @@ * `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. From dc347021d407d86a4f5cfb00df6416f1d5849cbe Mon Sep 17 00:00:00 2001 From: Tim Kuehn Date: Sat, 20 Feb 2016 01:05:43 -0800 Subject: [PATCH 3/5] Rework a line --- RELEASE_NOTES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 9311c08..8782710 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -4,7 +4,7 @@ * 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, +* `serve` was changed to be a default method on the generated `Service` traits, and it was renamed `spawn_with_config`. A second `default fn` was added: `spawn`, which takes no `Config` arg. From f870f832a9b843933498227ebcc6781b1738a2af Mon Sep 17 00:00:00 2001 From: Tim Kuehn Date: Sat, 20 Feb 2016 01:07:51 -0800 Subject: [PATCH 4/5] Rename RELEASE_NOTES.md => RELEASES.md to conform to rust-lang/rust. --- RELEASE_NOTES.md | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 RELEASE_NOTES.md diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md deleted file mode 100644 index 8782710..0000000 --- a/RELEASE_NOTES.md +++ /dev/null @@ -1,12 +0,0 @@ -## 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` was changed to be a default method 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. From 04624f054d6c73929375fa5955d0a0f6066fadb4 Mon Sep 17 00:00:00 2001 From: Tim Kuehn Date: Sat, 20 Feb 2016 01:11:02 -0800 Subject: [PATCH 5/5] Forgot the file --- RELEASES.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 RELEASES.md diff --git a/RELEASES.md b/RELEASES.md new file mode 100644 index 0000000..0fcffb0 --- /dev/null +++ b/RELEASES.md @@ -0,0 +1,12 @@ +## 1.3 (2016-02-20) + +### 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` was changed to be a default method 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.