Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prepare for release 1.7.0 #140

Merged
merged 1 commit into from
May 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Change Log

## [1.7.0] - 2023-05.03

* New(gradle): Add Hermit
* New: Add `pageWritten` hook to `WritingPager.Handler`
* New: Add paging to `batchLoad` and `batchWrite` (sync only)
* Docs: Migration guide for v1 -> v2
* Test: Shorter timeout on test dynamo server
* Chore(deps): Upgrade OpenJDK to 17
* Chore(gradle): Upgrade to 7.6.1
* Chore(deps): Upgrade to Kotlin 1.7
* Chore(gradle): Swap out kotlin-dsl for kotlin-jvm

## [1.6.2] - 2022-04.01

* Fixed: Fixing release, making sure we run the publication logic (#100)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -486,13 +486,13 @@ public List<String> getAlbumTrackTitles(String albumToken) {
For AWS SDK 1.x:

```groovy
implementation "app.cash.tempest:tempest:1.6.2"
implementation "app.cash.tempest:tempest:1.7.0"
```

For AWS SDK 2.x:

```groovy
implementation "app.cash.tempest:tempest2:1.6.2"
implementation "app.cash.tempest:tempest2:1.7.0"
```

## Migrating From Tempest 1 to Tempest 2
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.6.2
VERSION_NAME=1.7.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.6.2'
tempest: '1.7.0'

nav:
- 'Overview': index.md
Expand Down