-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from elmage/v0.2.0
V0.2.0
- Loading branch information
Showing
6 changed files
with
223 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,28 @@ | ||
# Changelog | ||
|
||
All notable changes to `elmage/textng-php` will be documented in this file. | ||
All notable changes to this project will be documented in this file. | ||
|
||
Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) principles. | ||
|
||
## [Unreleased] | ||
## [0.2.0] - 2020-08-20 | ||
### Added | ||
- Wrapper method for createCustomer endpoint | ||
- Wrapper method for removeCustomer endpoint | ||
### Changed | ||
- Updated the `README.md` file to show usage for both `createCustomer` and | ||
`removeCustomer` methods | ||
- Populated this CHANGELOG file | ||
## [0.1.1] - 2020-08-19 | ||
### Fixed | ||
- A bug with the HttpClient where post request parameters could not be read by the API | ||
server due to the wrong `Content-Type` Header | ||
|
||
## [0.1.0] - 2020-08-19 | ||
### Added | ||
- TextNg API Library | ||
|
||
[unreleased]: https://github.com/elmage/textng-php/compare/v0.2.0...HEAD | ||
[0.2.0]: https://github.com/elmage/textng-php/compare/post-content-type-fix...v0.2.0 | ||
[0.1.1]: https://github.com/elmage/textng-php/releases/tag/v0.1.1 | ||
[0.1.0]: https://github.com/elmage/textng-php/releases/tag/v0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -149,6 +149,4 @@ private function createHttpClient(ApiKeyAuthentication $auth): HttpClient | |
$this->transport | ||
); | ||
} | ||
|
||
} | ||
|