Skip to content

Commit 934e863

Browse files
committed
Update docs
1 parent 0f0417a commit 934e863

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## Un-released changes (master)
44

5+
## v0.6.0
6+
7+
* Specify a process callback for a single command or a default one to use for all commands. This can be used to access the underlying process to monitor it or customise behaviour such as implementing a timeout. [PR #66](https://github.com/lordcodes/turtle/pull/66).
8+
* Access command output using the `InputStreams` rather than waiting for it to complete fully and accessing as a `String`. [PR #67](https://github.com/lordcodes/turtle/pull/67).
9+
* Many dependency updates.
10+
511
## v0.5.0
612

713
Fixed JDK version for consumers.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,15 @@ Turtle is provided as a Gradle/Maven dependency.
5959

6060
```gradle
6161
dependencies {
62-
implementation("com.lordcodes.turtle:turtle:0.5.0")
62+
implementation("com.lordcodes.turtle:turtle:0.6.0")
6363
}
6464
```
6565

6666
#### ▶︎ Gradle Groovy DSL
6767

6868
```gradle
6969
dependencies {
70-
implementation 'com.lordcodes.turtle:turtle:0.5.0'
70+
implementation 'com.lordcodes.turtle:turtle:0.6.0'
7171
}
7272
```
7373

0 commit comments

Comments
 (0)