Skip to content

Commit

Permalink
🎄 prep for 2023
Browse files Browse the repository at this point in the history
  • Loading branch information
twentylemon committed Nov 29, 2023
1 parent 4fcda80 commit 91aae0f
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
lazy val advent = (project in file("."))
.settings(
scalaVersion := "3.2.1",
scalaVersion := "3.3.1",
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-core" % "2.9.0",
"org.typelevel" %% "cats-collections-core" % "0.9.5"
Expand Down
2 changes: 1 addition & 1 deletion project/metals.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

// This file enables sbt-bloop to create bloop config files.

addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.5.4")
addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.5.11")

2 changes: 1 addition & 1 deletion project/project/metals.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

// This file enables sbt-bloop to create bloop config files.

addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.5.4")
addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.5.11")

4 changes: 4 additions & 0 deletions src/main/scala/org/lemon/advent/year2023/Day01.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package org.lemon.advent.year2023

private object Day01:
def part1() = ()
10 changes: 10 additions & 0 deletions src/test/scala/org/lemon/advent/year2023/Day01Test.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package org.lemon.advent.year2023

import org.lemon.advent._
import org.lemon.advent.year2023.Day01._

class Day01Test extends UnitTest:

test("part 1 example") {
part1()
}

0 comments on commit 91aae0f

Please sign in to comment.