Skip to content

Commit 46f68d1

Browse files
committed
Release v0.3.0
1 parent b0942f8 commit 46f68d1

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

CHANGELOG.md

+18-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,21 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1717

1818
### Security
1919

20+
## [0.3.0] - 2019-08-29
21+
### Added
22+
- Added examples (/examples) for the server to server checkout integration
23+
24+
### Changed
25+
- Use native PHP 5.5 JsonSerializable on Date and Decimal serializer
26+
27+
### Deprecated
28+
29+
### Removed
30+
- Drop support for PHP version lower than 5.6
31+
- Remove custom JsonSerializer in favor on builtin JsonSerializable interface
32+
33+
### Fixed
34+
2035
## [0.2.2] - 2017-11-22
2136
### Added
2237

@@ -66,7 +81,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
6681
- API Client
6782
- Business models
6883

69-
[Unreleased]: https://github.com/aplazame/php-sdk/compare/v0.2.1...HEAD
84+
[Unreleased]: https://github.com/aplazame/php-sdk/compare/v0.3.0...HEAD
85+
[0.3.0]: https://github.com/aplazame/php-sdk/compare/v0.2.2...v0.3.0
86+
[0.2.2]: https://github.com/aplazame/php-sdk/compare/v0.2.1...v0.2.2
7087
[0.2.1]: https://github.com/aplazame/php-sdk/compare/v0.2.0...v0.2.1
7188
[0.2.0]: https://github.com/aplazame/php-sdk/compare/v0.1.0...v0.2.0
7289
[0.1.0]: https://github.com/aplazame/php-sdk/commit/cd32febb1dfb0afd3a4916204a2efd07a60a4b5f

src/Api/ApiRequest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class ApiRequest extends Request
99
{
10-
const SDK_VERSION = '0.2.2';
10+
const SDK_VERSION = '0.3.0';
1111
const FORMAT_JSON = 'json';
1212

1313
/**

0 commit comments

Comments
 (0)