From 377d93a8475af1f668fb21ed7fa4afdc763982c8 Mon Sep 17 00:00:00 2001 From: Aaron Piotrowski Date: Thu, 2 Jul 2015 01:23:17 -0500 Subject: [PATCH] Updated changelog --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e133800..25a8ef6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,10 +3,14 @@ ### v0.3.0 - Changes - - The following methods now return a `Generator` that can be used to create a `Coroutine` instead of returning a promise. Wrap the function call with `new Coroutine()` to create a promise or use with `yield` in a coroutine. This change was made to support `yield from` in PHP 7. + - Updated dependencies based on changes made in Icicle v0.7.0. + - The following methods now return a `Generator` that can be used to create a `Coroutine` instead of returning a promise. Wrap the function call with `new Coroutine()` to create a promise or use with `yield` in a coroutine. *This change was made to support `yield from` in PHP 7.* + - `Icicle\Dns\Connector\ConnectorInterface::connect()` - `Icicle\Dns\Executor\ExecutorInterface::execute()` - `Icicle\Dns\Resolver\ResolverInterface::resolve()` +--- + ### v0.2.0 - Changes