Skip to content

Commit 0f7b0d5

Browse files
committed
publish 1.1.0
1 parent 9fa958f commit 0f7b0d5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ and sharing them as an interactive solver.
1818

1919
#### [solutions](./solutions/src/commonMain/kotlin/in/procyk/adventofcode/solutions)
2020

21-
`implementation("in.procyk.adventofcode:solutions:1.0.2")`
21+
`implementation("in.procyk.adventofcode:solutions:1.1.0")`
2222

2323
- [AdventDay](./solutions/src/commonMain/kotlin/in/procyk/adventofcode/solutions/AdventDay.kt) is a single day solution
2424
- [Advent](./solutions/src/commonMain/kotlin/in/procyk/adventofcode/solutions/Advent.kt) is a collection of solutions
@@ -27,7 +27,7 @@ and sharing them as an interactive solver.
2727

2828
#### [runner](./runner/src/commonMain/kotlin/in/procyk/adventofcode/runner)
2929

30-
`implementation("in.procyk.adventofcode:runner:1.0.2")`
30+
`implementation("in.procyk.adventofcode:runner:1.1.0")`
3131

3232
- [FileAdventInputReader](./runner/src/commonMain/kotlin/in/procyk/adventofcode/runner/FileAdventInputReader.kt) is an
3333
instance of `AdventDay.InputReader` that allows to read inputs from system file
@@ -37,14 +37,14 @@ and sharing them as an interactive solver.
3737

3838
#### [test-runner](./test-runner/src/commonMain/kotlin/in/procyk/adventofcode/runner)
3939

40-
`implementation("in.procyk.adventofcode:test-runner:1.0.2")`
40+
`implementation("in.procyk.adventofcode:test-runner:1.1.0")`
4141

4242
- [AdventTest](./test-runner/src/commonMain/kotlin/in/procyk/adventofcode/runner/AdventTest.kt) has easy assertions of
4343
solutions from [AdventDay](./solutions/src/commonMain/kotlin/in/procyk/adventofcode/solutions/AdventDay.kt)
4444

4545
#### [solver](./solver/src/commonMain/kotlin/in/procyk/adventofcode/solver)
4646

47-
`implementation("in.procyk.adventofcode:solver:1.0.2")`
47+
`implementation("in.procyk.adventofcode:solver:1.1.0")`
4848

4949
- [AdventSolver](./solver/src/commonMain/kotlin/in/procyk/adventofcode/solver/AdventSolver.kt) implements UI for
5050
providing solutions and log outputs for Advent of Code based
@@ -76,7 +76,7 @@ and sharing them as an interactive solver.
7676

7777
```toml
7878
[versions]
79-
procyk-adventofcode = "1.0.2"
79+
procyk-adventofcode = "1.1.0"
8080

8181
[libraries]
8282
procyk-adventofcode-runner = { module = "in.procyk.adventofcode:runner", version.ref = "procyk-adventofcode" }

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ plugins {
77

88
allprojects {
99
group = "in.procyk.adventofcode"
10-
version = "1.0.2"
10+
version = "1.1.0"
1111
}

0 commit comments

Comments
 (0)