Skip to content

Commit 2d4f17b

Browse files
committed
Update for 2024.4 version
1 parent 44e9875 commit 2d4f17b

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This can be added to a [Kotlin Advent of Code template repository](https://githu
1010

1111
```kts
1212
dependencies {
13-
implementation("com.github.jsoberg:Kotlin-AoC-Utilities:2024.3")
13+
implementation("com.github.jsoberg:Kotlin-AoC-Utilities:2024.4")
1414
}
1515
```
1616

@@ -25,4 +25,9 @@ Listing of the current utilities for common functions found in Advent of Code pu
2525

2626
### Input Reading
2727

28-
- [ReadInput](src/main/kotlin/com/soberg/aoc/utlities/input/ReadInput.kt) - Uses the [Kotlin AoC API](https://github.com/jsoberg/Kotlin-AoC-API) to read daily input from API, caching locally in `input/<year>/Day<day>.txt`.
28+
- [ReadInput](src/main/kotlin/com/soberg/aoc/utlities/input/ReadInput.kt) - Uses the [Kotlin AoC API](https://github.com/jsoberg/Kotlin-AoC-API) to read daily input from API, caching locally in `input/<year>/Day<day>.txt`.
29+
30+
31+
### Async
32+
33+
- [AsyncSum](src/main/kotlin/com/soberg/aoc/utlities/extensions/AsyncSum.kt) - Various utility functions for running sum functions asynchronously (using coroutines).
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
object Publishing {
22
const val ArtifactId = "kotlin-aoc-utilities"
33
const val GroupId = "com.github.jsoberg"
4-
const val Version = "2024.3"
4+
const val Version = "2024.4"
55
}

0 commit comments

Comments
 (0)