File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
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
+
3
18
## 0.2.0 (2015-04-10)
4
19
5
20
* Feature: Add ` Client::fetchLog() ` method
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ The recommended way to install this library is [through composer](http://getcomp
118
118
``` JSON
119
119
{
120
120
"require" : {
121
- "clue/viewvc-api-react" : " ~0.2 .0"
121
+ "clue/viewvc-api-react" : " ~0.3 .0"
122
122
}
123
123
}
124
124
```
You can’t perform that action at this time.
0 commit comments