Skip to content

Commit

Permalink
Bumped version, updated changelog, updated branch-alias, updated Trav…
Browse files Browse the repository at this point in the history
…is config.
  • Loading branch information
jmalloc committed Sep 23, 2014
1 parent 42efe59 commit 1bc3445
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
@@ -1,14 +1,14 @@
language: php

php: ["5.5", "5.6", "hhvm"]
php: ["5.5", "5.6", "hhvm", "hhvm-nightly"]

matrix:
allow_failures: [{"php": "5.6"}, {"php": "hhvm"}]
allow_failures: [{"php": "hhvm"}, {"php": "hhvm-nightly"}]
fast_finish: true

env:
global:
- ARCHER_PUBLISH_VERSION=5.5
- ARCHER_PUBLISH_VERSION=5.6
- secure: "eNkdkCDTTQDrKETgHn9u2Kbx1vvZFDkMxFgmwl6keoe9X4XtEsw/LSgHlE4dEscGVwEidzMJuH2ZapgB9KbqSJImKmtvJYjF1700zrWdXSqy5NeLiexwBwoQbkrnO27AwqpRnEFwJrBlEggsBcUYj8s9hRYlDKb3juEEKgdafxc="

install:
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,12 @@
# Recoil Changelog

### 0.2.0 (2014-09-23)

To faciliate several performance improvements the following backwards compatibility breaking changes have been introduced:

* **[BC]** `CoroutineInterface` no longer implements `EventEmitterInterface` - several unused events were fired every time a co-routine was called
* **[BC]** `Recoil::finalize()` now only works with generated based co-routines - this was previously implemented using the aforementioned events

### 0.1.0 (2014-02-04)

* Initial release
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -299,6 +299,6 @@ $kernel->execute($coroutine());
$eventLoop->run();
```
<!-- references -->
[Build Status]: http://img.shields.io/travis/recoilphp/recoil/develop.svg
[Test Coverage]: http://img.shields.io/coveralls/recoilphp/recoil/develop.svg
[SemVer]: http://img.shields.io/:semver-0.1.0-yellow.svg
[Build Status]: http://img.shields.io/travis/recoilphp/recoil/develop.svg?style=flat-square
[Test Coverage]: http://img.shields.io/coveralls/recoilphp/recoil/develop.svg?style=flat-square
[SemVer]: http://img.shields.io/:semver-0.2.0-yellow.svg?style=flat-square
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -39,7 +39,7 @@
},
"extra": {
"branch-alias": {
"dev-develop": "0.2.x-dev"
"dev-develop": "0.3.x-dev"
}
}
}
18 changes: 12 additions & 6 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/PackageInfo.php
Expand Up @@ -4,5 +4,5 @@
class PackageInfo
{
const NAME = 'Recoil';
const VERSION = '0.1.0';
const VERSION = '0.2.0';
}

0 comments on commit 1bc3445

Please sign in to comment.