Skip to content

Commit 8decfc8

Browse files
author
Sherwin H
committed
chore(release): 2.2.0
1 parent d98ba0b commit 8decfc8

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4+
5+
<a name="2.2.0"></a>
6+
# [2.2.0](https://github.com/imgix/imgix-php/compare/2.1.1...2.2.0) (2019-04-08)
7+
8+
9+
### Features
10+
11+
* add support for multiple URL parameter values by flattening nested arrays passed into $params ([#40](https://github.com/imgix/imgix-php/pull/40))
12+
13+
14+
### Bug Fixes
15+
16+
* replace deprecated phpunit annotations with exception methods ([#39](https://github.com/imgix/imgix-php/pull/39))
17+
* add domain validation at UrlBuilder initialization ([#41](https://github.com/imgix/imgix-php/pull/41)), fixes [#10](https://github.com/imgix/imgix-php/issues/10)

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "imgix/imgix-php",
33
"description": "A PHP client library for generating URLs with imgix.",
44
"type": "library",
5-
"version": "2.1.1",
5+
"version": "2.2.0",
66
"license": "BSD-2-Clause",
77
"keywords": [
88
"imgix"

src/Imgix/UrlBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
class UrlBuilder {
66

7-
private $currentVersion = "2.1.1";
7+
private $currentVersion = "2.2.0";
88
private $domains;
99
private $useHttps;
1010
private $signKey;

0 commit comments

Comments
 (0)