1
1
# Change Log
2
2
3
- ## 2.0.0 - UNRELEASED
3
+
4
+ All notable changes to this project will be documented in this file.
5
+
6
+ The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
7
+ and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
8
+
9
+
10
+ ## [ Unreleased]
11
+
12
+
13
+ ## [ 2.0.0] - 2018-10-31
4
14
5
15
This version is no BC break for consumers using HTTPlug. However, HTTP clients that
6
16
implement HTTPlug need to adjust because we add return type declarations.
@@ -9,40 +19,41 @@ implement HTTPlug need to adjust because we add return type declarations.
9
19
10
20
- Support for PSR-18 (HTTP client).
11
21
22
+ ### Changed
23
+
24
+ - ** BC Break:** ` HttpClient::sendRequest(RequestInterface $request) ` has a return type annotation. The new
25
+ signature is ` HttpClient::sendRequest(RequestInterface $request): ResponseInterface ` .
26
+ - ** BC Break:** ` RequestException::getRequest() ` has a return type annotation. The new
27
+ signature is ` RequestException::getRequest(): RequestInterface ` .
28
+
12
29
### Removed
13
30
14
31
- PHP 5 support
15
32
16
- ### Changed
17
-
18
- - [ BC Break] ` HttpClient::sendRequest(RequestInterface $request) ` has a return type annotation. The new
19
- signature is ` HttpClient::sendRequest(RequestInterface $request): ResponseInterface ` .
20
- - [ BC Break] ` RequestException::getRequest() ` has a return type annotation. The new
21
- signature is ` RequestException::getRequest(): RequestInterface ` .
22
33
23
- ## 1.1.0 - 2016-08-31
34
+ ## [ 1.1.0] - 2016-08-31
24
35
25
36
### Added
26
37
27
38
- HttpFulfilledPromise and HttpRejectedPromise which respect the HttpAsyncClient interface
28
39
29
40
30
- ## 1.0.0 - 2016-01-26
41
+ ## [ 1.0.0] - 2016-01-26
31
42
32
43
### Removed
33
44
34
45
- Stability configuration from composer
35
46
36
47
37
- ## 1.0.0-RC1 - 2016-01-12
48
+ ## [ 1.0.0-RC1] - 2016-01-12
38
49
39
50
### Changed
40
51
41
52
- Updated package files
42
53
- Updated promise dependency to RC1
43
54
44
55
45
- ## 1.0.0-beta - 2015-12-17
56
+ ## [ 1.0.0-beta] - 2015-12-17
46
57
47
58
### Added
48
59
@@ -53,7 +64,7 @@ signature is `RequestException::getRequest(): RequestInterface`.
53
64
- Exception concept
54
65
55
66
56
- ## 1.0.0-alpha3 - 2015-12-13
67
+ ## [ 1.0.0-alpha3] - 2015-12-13
57
68
58
69
### Changed
59
70
@@ -64,14 +75,14 @@ signature is `RequestException::getRequest(): RequestInterface`.
64
75
- Promise interface moved to its own repository: [ php-http/promise] ( https://github.com/php-http/promise )
65
76
66
77
67
- ## 1.0.0-alpha2 - 2015-11-16
78
+ ## [ 1.0.0-alpha2] - 2015-11-16
68
79
69
80
### Added
70
81
71
82
- Async client and Promise interface
72
83
73
84
74
- ## 1.0.0-alpha - 2015-10-26
85
+ ## [ 1.0.0-alpha] - 2015-10-26
75
86
76
87
### Added
77
88
@@ -93,3 +104,14 @@ signature is `RequestException::getRequest(): RequestInterface`.
93
104
### Added
94
105
95
106
- Initial release
107
+
108
+
109
+ [ Unreleased ] : https://github.com/php-http/httplug/compare/v2.0.0...HEAD
110
+ [ 2.0.0 ] : https://github.com/php-http/httplug/compare/v1.1.0...HEAD
111
+ [ 1.1.0 ] : https://github.com/php-http/httplug/compare/v1.0.0...v1.1.0
112
+ [ 1.0.0 ] : https://github.com/php-http/httplug/compare/v1.0.0-RC1...v1.0.0
113
+ [ 1.0.0-RC1 ] : https://github.com/php-http/httplug/compare/v1.0.0-beta...v1.0.0-RC1
114
+ [ 1.0.0-beta ] : https://github.com/php-http/httplug/compare/v1.0.0-alpha3...v1.0.0-beta
115
+ [ 1.0.0-alpha3 ] : https://github.com/php-http/httplug/compare/v1.0.0-alpha2...v1.0.0-alpha3
116
+ [ 1.0.0-alpha2 ] : https://github.com/php-http/httplug/compare/v1.0.0-alpha...v1.0.0-alpha2
117
+ [ 1.0.0-alpha ] : https://github.com/php-http/httplug/compare/v0.1.0...v1.0.0-alpha
0 commit comments