Skip to content

Commit

Permalink
Update for 2024.4 version
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoberg committed Dec 8, 2024
1 parent 44e9875 commit 2d4f17b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This can be added to a [Kotlin Advent of Code template repository](https://githu

```kts
dependencies {
implementation("com.github.jsoberg:Kotlin-AoC-Utilities:2024.3")
implementation("com.github.jsoberg:Kotlin-AoC-Utilities:2024.4")
}
```

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

### Input Reading

- [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`.
- [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`.


### Async

- [AsyncSum](src/main/kotlin/com/soberg/aoc/utlities/extensions/AsyncSum.kt) - Various utility functions for running sum functions asynchronously (using coroutines).
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Publishing.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
object Publishing {
const val ArtifactId = "kotlin-aoc-utilities"
const val GroupId = "com.github.jsoberg"
const val Version = "2024.3"
const val Version = "2024.4"
}

0 comments on commit 2d4f17b

Please sign in to comment.