Skip to content

Commit 2cfda45

Browse files
committed
Prepare v0.3.0 release
1 parent 379b715 commit 2cfda45

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## 0.3.0 (2015-09-04)
4+
5+
* Feature / BC break: Build properly escaped URIs via Browser
6+
([#17](https://github.com/clue/php-viewvc-api-react/pull/17))
7+
8+
```php
9+
// old
10+
$client = new Client($uri, $browser);
11+
12+
// new
13+
$client = new Client($browser->withBase($uri));
14+
```
15+
16+
* Update dependencies, more SOLID code base
17+
318
## 0.2.0 (2015-04-10)
419

520
* Feature: Add `Client::fetchLog()` method

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ The recommended way to install this library is [through composer](http://getcomp
118118
```JSON
119119
{
120120
"require": {
121-
"clue/viewvc-api-react": "~0.2.0"
121+
"clue/viewvc-api-react": "~0.3.0"
122122
}
123123
}
124124
```

0 commit comments

Comments
 (0)