Skip to content

Commit 12d2b22

Browse files
committed
Prepare for release 1.4.0.
1 parent c725d37 commit 12d2b22

File tree

16 files changed

+33
-4
lines changed

16 files changed

+33
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Log
22

3+
## [1.4.0] - 2021-03-08
4+
5+
* New: `tempest-testing` APIs for testing DynamoDB clients using DynamoDBLocal (#33).
6+
* New: Support for Java Record (#27).
7+
38
## [1.3.0] - 2021-01-22
49

510
* New: `app.cash.tempest:tempest2:1.3.0` supports AWS SDK 2.x (#23).

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -422,13 +422,13 @@ You build business logic with logical types. Tempest handles mapping them to the
422422
For AWS SDK 1.x:
423423

424424
```groovy
425-
implementation "app.cash.tempest:tempest:1.3.0"
425+
implementation "app.cash.tempest:tempest:1.4.0"
426426
```
427427

428428
For AWS SDK 2.x:
429429

430430
```groovy
431-
implementation "app.cash.tempest:tempest2:1.3.0"
431+
implementation "app.cash.tempest:tempest2:1.4.0"
432432
```
433433

434434
## License

gradle.properties

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

33
GROUP=app.cash.tempest
4-
VERSION_NAME=1.3.0-SNAPSHOT
4+
VERSION_NAME=1.4.0
55

66
POM_URL=https://github.com/square/tempest/
77
POM_SCM_URL=https://github.com/square/tempest/

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ plugins:
5050

5151
extra:
5252
versions:
53-
tempest: '1.3.0'
53+
tempest: '1.4.0'
5454

5555
nav:
5656
- 'Overview': index.md

tempest-testing-docker/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,5 @@ dependencies {
2020
testImplementation project(":samples:urlshortener")
2121
testImplementation project(":tempest-testing-junit5")
2222
}
23+
24+
apply from: "$rootDir/gradle-mvn-publish.gradle"

tempest-testing-internal/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ dependencies {
1111
testImplementation dep.junitApi
1212
testImplementation dep.junitEngine
1313
}
14+
15+
apply from: "$rootDir/gradle-mvn-publish.gradle"

tempest-testing-junit4/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,5 @@ dependencies {
1717
test {
1818
useJUnit()
1919
}
20+
21+
apply from: "$rootDir/gradle-mvn-publish.gradle"

tempest-testing-junit5/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,5 @@ dependencies {
1414
testImplementation dep.assertj
1515
testImplementation dep.junitEngine
1616
}
17+
18+
apply from: "$rootDir/gradle-mvn-publish.gradle"

tempest-testing-jvm/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ dependencies {
1111
testImplementation dep.junitApi
1212
testImplementation dep.junitEngine
1313
}
14+
15+
apply from: "$rootDir/gradle-mvn-publish.gradle"

tempest-testing/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ dependencies {
1111
testImplementation dep.junitApi
1212
testImplementation dep.junitEngine
1313
}
14+
15+
apply from: "$rootDir/gradle-mvn-publish.gradle"

tempest2-testing-docker/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,5 @@ dependencies {
2020
testImplementation project(":samples:urlshortener2")
2121
testImplementation project(":tempest2-testing-junit5")
2222
}
23+
24+
apply from: "$rootDir/gradle-mvn-publish.gradle"

tempest2-testing-internal/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ dependencies {
1111
testImplementation dep.junitApi
1212
testImplementation dep.junitEngine
1313
}
14+
15+
apply from: "$rootDir/gradle-mvn-publish.gradle"

tempest2-testing-junit4/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,5 @@ dependencies {
1717
test {
1818
useJUnit()
1919
}
20+
21+
apply from: "$rootDir/gradle-mvn-publish.gradle"

tempest2-testing-junit5/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,5 @@ dependencies {
1414
testImplementation dep.assertj
1515
testImplementation dep.junitEngine
1616
}
17+
18+
apply from: "$rootDir/gradle-mvn-publish.gradle"

tempest2-testing-jvm/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ dependencies {
1111
testImplementation dep.junitApi
1212
testImplementation dep.junitEngine
1313
}
14+
15+
apply from: "$rootDir/gradle-mvn-publish.gradle"

tempest2-testing/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ dependencies {
1111
testImplementation dep.junitApi
1212
testImplementation dep.junitEngine
1313
}
14+
15+
apply from: "$rootDir/gradle-mvn-publish.gradle"

0 commit comments

Comments
 (0)