Skip to content

Commit

Permalink
Prepare for release 1.4.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
zhxnlai committed Mar 8, 2021
1 parent c725d37 commit 12d2b22
Show file tree
Hide file tree
Showing 16 changed files with 33 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## [1.4.0] - 2021-03-08

* New: `tempest-testing` APIs for testing DynamoDB clients using DynamoDBLocal (#33).
* New: Support for Java Record (#27).

## [1.3.0] - 2021-01-22

* New: `app.cash.tempest:tempest2:1.3.0` supports AWS SDK 2.x (#23).
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -422,13 +422,13 @@ You build business logic with logical types. Tempest handles mapping them to the
For AWS SDK 1.x:

```groovy
implementation "app.cash.tempest:tempest:1.3.0"
implementation "app.cash.tempest:tempest:1.4.0"
```

For AWS SDK 2.x:

```groovy
implementation "app.cash.tempest:tempest2:1.3.0"
implementation "app.cash.tempest:tempest2:1.4.0"
```

## License
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
kotlin.code.style=official

GROUP=app.cash.tempest
VERSION_NAME=1.3.0-SNAPSHOT
VERSION_NAME=1.4.0

POM_URL=https://github.com/square/tempest/
POM_SCM_URL=https://github.com/square/tempest/
Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ plugins:

extra:
versions:
tempest: '1.3.0'
tempest: '1.4.0'

nav:
- 'Overview': index.md
Expand Down
2 changes: 2 additions & 0 deletions tempest-testing-docker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,5 @@ dependencies {
testImplementation project(":samples:urlshortener")
testImplementation project(":tempest-testing-junit5")
}

apply from: "$rootDir/gradle-mvn-publish.gradle"
2 changes: 2 additions & 0 deletions tempest-testing-internal/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@ dependencies {
testImplementation dep.junitApi
testImplementation dep.junitEngine
}

apply from: "$rootDir/gradle-mvn-publish.gradle"
2 changes: 2 additions & 0 deletions tempest-testing-junit4/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,5 @@ dependencies {
test {
useJUnit()
}

apply from: "$rootDir/gradle-mvn-publish.gradle"
2 changes: 2 additions & 0 deletions tempest-testing-junit5/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@ dependencies {
testImplementation dep.assertj
testImplementation dep.junitEngine
}

apply from: "$rootDir/gradle-mvn-publish.gradle"
2 changes: 2 additions & 0 deletions tempest-testing-jvm/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@ dependencies {
testImplementation dep.junitApi
testImplementation dep.junitEngine
}

apply from: "$rootDir/gradle-mvn-publish.gradle"
2 changes: 2 additions & 0 deletions tempest-testing/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@ dependencies {
testImplementation dep.junitApi
testImplementation dep.junitEngine
}

apply from: "$rootDir/gradle-mvn-publish.gradle"
2 changes: 2 additions & 0 deletions tempest2-testing-docker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,5 @@ dependencies {
testImplementation project(":samples:urlshortener2")
testImplementation project(":tempest2-testing-junit5")
}

apply from: "$rootDir/gradle-mvn-publish.gradle"
2 changes: 2 additions & 0 deletions tempest2-testing-internal/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@ dependencies {
testImplementation dep.junitApi
testImplementation dep.junitEngine
}

apply from: "$rootDir/gradle-mvn-publish.gradle"
2 changes: 2 additions & 0 deletions tempest2-testing-junit4/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,5 @@ dependencies {
test {
useJUnit()
}

apply from: "$rootDir/gradle-mvn-publish.gradle"
2 changes: 2 additions & 0 deletions tempest2-testing-junit5/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@ dependencies {
testImplementation dep.assertj
testImplementation dep.junitEngine
}

apply from: "$rootDir/gradle-mvn-publish.gradle"
2 changes: 2 additions & 0 deletions tempest2-testing-jvm/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@ dependencies {
testImplementation dep.junitApi
testImplementation dep.junitEngine
}

apply from: "$rootDir/gradle-mvn-publish.gradle"
2 changes: 2 additions & 0 deletions tempest2-testing/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@ dependencies {
testImplementation dep.junitApi
testImplementation dep.junitEngine
}

apply from: "$rootDir/gradle-mvn-publish.gradle"

0 comments on commit 12d2b22

Please sign in to comment.