Skip to content

Commit 4f2657c

Browse files
committed
Prepare 0.7.0
1 parent 1c4770b commit 4f2657c

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

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

33
## Un-released changes (master)
44

5+
## v0.7.0
6+
7+
* Make ShellScript constructor accessible, so that consumers can create their own instances, such as creating a wrapper class. [PR #99](https://github.com/lordcodes/turtle/pull/99)
8+
* Many dependency updates.
9+
510
## v0.6.0
611

712
* 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).

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.6.0")
62+
implementation("com.lordcodes.turtle:turtle:0.7.0")
6363
}
6464
```
6565

6666
#### ▶︎ Gradle Groovy DSL
6767

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

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ kotlin.code.style=official
1414

1515
# Maven Central publishing
1616
GROUP=com.lordcodes.turtle
17-
VERSION_NAME=0.6.0
17+
VERSION_NAME=0.7.0
1818
POM_ARTIFACT_ID=turtle
1919

2020
POM_NAME=Turtle

0 commit comments

Comments
 (0)