Skip to content

Commit 9754ffb

Browse files
author
Rich Leland
committedMay 4, 2016
Bump version, update changelog
1 parent 247baae commit 9754ffb

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed
 

‎CHANGELOG.md

+13-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,17 @@ All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased][unreleased]
6-
- There is no unreleased code at this time.
6+
7+
## [1.2.0] - 2016-05-04
8+
### Added
9+
- [EditorConfig](http://editorconfig.org/) file to maintain consistent coding style
10+
- `composer run-script fix-style` can now be run to enforce PSR-2 style
11+
12+
### Changed
13+
- Responses from the SparkPost API with HTTP status code 403 now properly raise with message, code, and description
14+
15+
### Fixed
16+
- Removed reliance on composer for version of library
717

818
## [1.1.0] - 2016-05-02
919
### Added
@@ -42,7 +52,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
4252
### Fixed
4353
- README now has proper code blocks denoting PHP language
4454

45-
[unreleased]: https://github.com/sparkpost/php-sparkpost/compare/v1.1.0...HEAD
55+
[unreleased]: https://github.com/sparkpost/php-sparkpost/compare/v1.2.0...HEAD
56+
[1.2.0]: https://github.com/sparkpost/php-sparkpost/compare/v1.1.0...v1.2.0
4657
[1.1.0]: https://github.com/sparkpost/php-sparkpost/compare/v1.0.3...v1.1.0
4758
[1.0.3]: https://github.com/sparkpost/php-sparkpost/compare/v1.0.2...v1.0.3
4859
[1.0.2]: https://github.com/sparkpost/php-sparkpost/compare/v1.0.1...v1.0.2

‎lib/SparkPost/SparkPost.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class SparkPost
1313
/**
1414
* Library version, used for setting User-Agent.
1515
*/
16-
private $version = '1.1.0';
16+
private $version = '1.2.0';
1717

1818
/**
1919
* Connection config for making requests.

0 commit comments

Comments
 (0)
Please sign in to comment.