Skip to content

Commit 7e7a68b

Browse files
authored
Prepare v0.4.0 (#15)
1 parent 4c89f94 commit 7e7a68b

File tree

3 files changed

+14
-7
lines changed

3 files changed

+14
-7
lines changed

CHANGELOG.md

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

33
## Un-released changes (master)
44

5+
## v0.4.0
6+
7+
Fixed the broken POM file from v0.3.0.
8+
59
## v0.3.0
610

11+
:rotating_light: IMPORTANT: Broken release, please use v0.4.0
12+
713
* Maven Central publishing.
814
* Updated dependencies to latest.
915

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,22 +52,23 @@ When a command produces an error, the exit code and error output is thrown as an
5252

5353
Turtle is provided as a Gradle/Maven dependency.
5454

55-
* v0.3.0 onwards are available via Maven Central.
55+
* v0.4.0 onwards are available via Maven Central.
56+
* v0.3.0 was broken, so please use v0.4.0 or later.
5657
* Earlier releases were available via Bintray/JCenter.
5758

5859
#### ▶︎ Gradle Kotlin DSL
5960

6061
```gradle
6162
dependencies {
62-
implementation("com.lordcodes.turtle:turtle:0.3.0")
63+
implementation("com.lordcodes.turtle:turtle:0.4.0")
6364
}
6465
```
6566

6667
#### ▶︎ Gradle Groovy DSL
6768

6869
```gradle
6970
dependencies {
70-
implementation 'com.lordcodes.turtle:turtle:0.3.0'
71+
implementation 'com.lordcodes.turtle:turtle:0.4.0'
7172
}
7273
```
7374

@@ -93,12 +94,12 @@ To run a series of commands or use the built-in commands, just call `shellRun {}
9394
```kotlin
9495
shellRun {
9596
command("mkdir tortoise")
96-
97+
9798
changeWorkingDirectory("tortoise")
98-
99+
99100
git.commit("Initial commit")
100101
git.addTag("v1.2", "Release v1.2")
101-
102+
102103
files.openApplication("Spotify")
103104
}
104105
```

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.3.0
17+
VERSION_NAME=0.4.0
1818
POM_ARTIFACT_ID=turtle
1919

2020
POM_NAME=Turtle

0 commit comments

Comments
 (0)