We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 379b715 commit 2cfda45Copy full SHA for 2cfda45
CHANGELOG.md
@@ -1,5 +1,20 @@
1
# Changelog
2
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
18
## 0.2.0 (2015-04-10)
19
20
* Feature: Add `Client::fetchLog()` method
README.md
@@ -118,7 +118,7 @@ The recommended way to install this library is [through composer](http://getcomp
118
```JSON
119
{
120
"require": {
121
- "clue/viewvc-api-react": "~0.2.0"
+ "clue/viewvc-api-react": "~0.3.0"
122
}
123
124
```
0 commit comments