Skip to content

Commit

Permalink
Update scala3-library, ... to 3.3.1 (#228)
Browse files Browse the repository at this point in the history
* Update scala3-library, ... to 3.3.1

* Removed usages of deprecated package

* Removed deprecated type aliases

* Bumped up base version

* Fixed broken doc after removing deprecated package
  • Loading branch information
hnaderi authored Nov 16, 2023
1 parent 8439808 commit 8bab0ed
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 82 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import sbtcrossproject.CrossProject

Global / onChangedBuildSource := ReloadOnSourceChanges

lazy val scala3 = "3.3.0"
lazy val scala3 = "3.3.1"

inThisBuild(
List(
tlBaseVersion := "0.11",
tlBaseVersion := "0.12",
scalaVersion := scala3,
fork := true,
Test / fork := false,
Expand Down
1 change: 1 addition & 0 deletions docs/tutorials/3_processes.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import cats.implicits.*
import cats.effect.IO
import edomata.backend.*
import edomata.backend.eventsourcing.*
import fs2.Stream
import fs2.Stream.*

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import cats.data.NonEmptyChain
import cats.effect.IO
import cats.effect.kernel.Resource
import cats.implicits.*
import edomata.backend.Backend
import edomata.backend.BackendError
import edomata.backend.eventsourcing.Backend
import edomata.core.CommandMessage
import edomata.core.Edomaton
import edomata.core.ResponseD
Expand Down
78 changes: 0 additions & 78 deletions modules/backend/src/main/scala/eventsourcing/deprecated.scala

This file was deleted.

1 change: 1 addition & 0 deletions modules/doobie/src/main/scala/DoobieJournalReader.scala
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import _root_.doobie.Transactor
import _root_.doobie.implicits.*
import cats.effect.Concurrent
import edomata.backend.*
import edomata.backend.eventsourcing.JournalReader
import fs2.Stream

private final class DoobieJournalReader[F[_]: Concurrent, E](
Expand Down
1 change: 1 addition & 0 deletions modules/doobie/src/main/scala/DoobieRepository.scala
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import cats.effect.kernel.Clock
import cats.effect.kernel.Sync
import cats.implicits.*
import edomata.backend.*
import edomata.backend.eventsourcing.*
import edomata.core.*

import java.time.OffsetDateTime
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import cats.effect.IO
import cats.effect.kernel.Resource
import cats.implicits.*
import edomata.backend.*
import edomata.backend.eventsourcing.Backend
import edomata.doobie.*
import scodec.bits.ByteVector

Expand Down
1 change: 1 addition & 0 deletions modules/skunk/src/main/scala/SkunkJournalReader.scala
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import _root_.skunk.*
import cats.effect.Concurrent
import cats.effect.kernel.Resource
import edomata.backend.*
import edomata.backend.eventsourcing.JournalReader
import fs2.Stream

private final class SkunkJournalReader[F[_]: Concurrent, E](
Expand Down
3 changes: 2 additions & 1 deletion modules/skunk/src/main/scala/SkunkRepository.scala
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ import cats.effect.kernel.Resource
import cats.effect.kernel.Sync
import cats.effect.std.UUIDGen
import cats.implicits.*
import edomata.backend.*
import edomata.backend.eventsourcing.*
import edomata.core.*
import edomata.backend.*

private final class SkunkRepository[F[_], S, E, R, N](
pool: Resource[F, Session[F]],
Expand Down
1 change: 1 addition & 0 deletions modules/skunk/src/test/scala/SkunkCompatibilitySuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import cats.effect.IO
import cats.effect.kernel.Resource
import cats.implicits.*
import edomata.backend.*
import edomata.backend.eventsourcing.Backend
import edomata.skunk.*
import natchez.Trace.Implicits.noop
import scodec.bits.ByteVector
Expand Down

0 comments on commit 8bab0ed

Please sign in to comment.