File tree Expand file tree Collapse file tree 4 files changed +16
-4
lines changed Expand file tree Collapse file tree 4 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## [ 1.7.0] - 2023-05.03
4
+
5
+ * New(gradle): Add Hermit
6
+ * New: Add ` pageWritten ` hook to ` WritingPager.Handler `
7
+ * New: Add paging to ` batchLoad ` and ` batchWrite ` (sync only)
8
+ * Docs: Migration guide for v1 -> v2
9
+ * Test: Shorter timeout on test dynamo server
10
+ * Chore(deps): Upgrade OpenJDK to 17
11
+ * Chore(gradle): Upgrade to 7.6.1
12
+ * Chore(deps): Upgrade to Kotlin 1.7
13
+ * Chore(gradle): Swap out kotlin-dsl for kotlin-jvm
14
+
3
15
## [ 1.6.2] - 2022-04.01
4
16
5
17
* Fixed: Fixing release, making sure we run the publication logic (#100 )
Original file line number Diff line number Diff line change @@ -486,13 +486,13 @@ public List<String> getAlbumTrackTitles(String albumToken) {
486
486
For AWS SDK 1.x:
487
487
488
488
```groovy
489
- implementation "app.cash.tempest:tempest:1.6.2 "
489
+ implementation "app.cash.tempest:tempest:1.7.0 "
490
490
```
491
491
492
492
For AWS SDK 2.x:
493
493
494
494
```groovy
495
- implementation "app.cash.tempest:tempest2:1.6.2 "
495
+ implementation "app.cash.tempest:tempest2:1.7.0 "
496
496
```
497
497
498
498
## Migrating From Tempest 1 to Tempest 2
Original file line number Diff line number Diff line change 1
1
kotlin.code.style =official
2
2
3
3
GROUP =app.cash.tempest
4
- VERSION_NAME =1.6.2
4
+ VERSION_NAME =1.7.0
5
5
6
6
POM_URL =https://github.com/square/tempest/
7
7
POM_SCM_URL =https://github.com/square/tempest/
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ plugins:
50
50
51
51
extra :
52
52
versions :
53
- tempest : ' 1.6.2 '
53
+ tempest : ' 1.7.0 '
54
54
55
55
nav :
56
56
- ' Overview ' : index.md
You can’t perform that action at this time.
0 commit comments