File tree Expand file tree Collapse file tree 2 files changed +24
-4
lines changed Expand file tree Collapse file tree 2 files changed +24
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
- # 1.1.0 (2017-07-06)
3
+ ## 1.2.0 (2018-07-09)
4
+
5
+ * Feature: Forward compatiblity with EventLoop v0.5 and upcoming v1.0.
6
+ (#28 by @clue )
7
+
8
+ * Improve test suite by updating Travis config to test against legacy PHP 5.3 through PHP 7.2.
9
+ (#27 by @clue )
10
+
11
+ * Update project homepage.
12
+ (#26 by @clue )
13
+
14
+ ## 1.1.0 (2017-07-06)
4
15
5
16
* Feature: Forward compatibility with Stream v1.0 and v0.7 (while keeping BC)
6
17
(#22 by @Yoshi2889 and #23 by @WyriHaximus )
Original file line number Diff line number Diff line change @@ -104,18 +104,24 @@ $stream->on('c0', function ($code) {
104
104
The recommended way to install this library is [ through Composer] ( https://getcomposer.org ) .
105
105
[ New to Composer?] ( https://getcomposer.org/doc/00-intro.md )
106
106
107
+ This project follows [ SemVer] ( https://semver.org/ ) .
107
108
This will install the latest supported version:
108
109
109
110
``` bash
110
- $ composer require clue/term-react:^1.1
111
+ $ composer require clue/term-react:^1.2
111
112
```
112
113
113
114
See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
114
115
116
+ This project aims to run on any platform and thus does not require any PHP
117
+ extensions and supports running on legacy PHP 5.3 through current PHP 7+ and
118
+ HHVM.
119
+ It's * highly recommended to use PHP 7+* for this project.
120
+
115
121
## Tests
116
122
117
123
To run the test suite, you first need to clone this repo and then install all
118
- dependencies [ through Composer] ( http ://getcomposer.org) :
124
+ dependencies [ through Composer] ( https ://getcomposer.org) :
119
125
120
126
``` bash
121
127
$ composer install
@@ -129,7 +135,10 @@ $ php vendor/bin/phpunit
129
135
130
136
## License
131
137
132
- MIT
138
+ This project is released under the permissive [ MIT license] ( LICENSE ) .
139
+
140
+ > Did you know that I offer custom development services and issuing invoices for
141
+ sponsorships of releases and for contributions? Contact me (@clue ) for details.
133
142
134
143
## More
135
144
You can’t perform that action at this time.
0 commit comments