From e48f14f6d01efd4760950948191d2822c3f6ff9b Mon Sep 17 00:00:00 2001 From: "Frank S. Thomas" Date: Fri, 5 Oct 2018 19:36:49 +0200 Subject: [PATCH] Setting version to 0.0.10 --- README.md | 10 +++++----- latestVersion.sbt | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 26d610b..1e6f929 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ import scala.concurrent.ExecutionContext ``` ```scala implicit val timer: Timer[IO] = IO.timer(ExecutionContext.global) -// timer: cats.effect.Timer[cats.effect.IO] = cats.effect.internals.IOTimer@7fa85a55 +// timer: cats.effect.Timer[cats.effect.IO] = cats.effect.internals.IOTimer@474619d9 val evenSeconds = Cron.unsafeParse("*/2 * * ? * *") // evenSeconds: cron4s.expr.CronExpr = */2 * * ? * * @@ -32,9 +32,9 @@ val scheduled = awakeEveryCron[IO](evenSeconds) >> printTime // scheduled: fs2.Stream[[x]cats.effect.IO[x],Unit] = Stream(..) scheduled.take(3).compile.drain.unsafeRunSync -// 19:54:44.090 -// 19:54:46.002 -// 19:54:48.004 +// 19:36:44.184 +// 19:36:46.004 +// 19:36:48.004 ``` ## Using fs2-cron @@ -45,7 +45,7 @@ If you're using sbt, add the following to your build: ```sbt libraryDependencies ++= Seq( - "eu.timepit" %% "fs2-cron-core" % "0.0.9" + "eu.timepit" %% "fs2-cron-core" % "0.0.10" ) ``` diff --git a/latestVersion.sbt b/latestVersion.sbt index a7620d9..9d5b583 100644 --- a/latestVersion.sbt +++ b/latestVersion.sbt @@ -1 +1 @@ -latestVersion in ThisBuild := "0.0.9" +latestVersion in ThisBuild := "0.0.10"