Skip to content

Commit

Permalink
0.2.2: make IvrStepRunner non-final (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
nafg committed Apr 2, 2018
1 parent 4738f87 commit 7cd686d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/src/main/scala/simpleivr/IvrStepRunner.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package simpleivr
import cats.effect.IO


final class IvrStepRunner(commandInterpreter: IvrCommandInterpreter) {
class IvrStepRunner(commandInterpreter: IvrCommandInterpreter) {
def runIvrCommand[A](cmd: IvrCommandF[A]): IO[A] = cmd.fold[IO](commandInterpreter)
def runIvrStep[A](step: IvrStep[A]): IO[A] = step.runM(runIvrCommand)
}
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ThisBuild / version := "0.2.1"
ThisBuild / version := "0.2.2"

0 comments on commit 7cd686d

Please sign in to comment.