From f2bf51db6b885eb9069987645808c1cdb75d2a4a Mon Sep 17 00:00:00 2001 From: Lorenzo Gabriele Date: Sun, 23 Apr 2023 15:03:23 +0200 Subject: [PATCH] Update version in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 093b01b..0f7efc0 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ An implementation of `ExecutionContext` in terms of JavaScript's [`setImmediate` ## Usage ```sbt -libraryDependencies += "org.scala-js" %%% "scala-js-macrotask-executor" % "1.0.0" +libraryDependencies += "org.scala-js" %%% "scala-js-macrotask-executor" % "1.1.1" ``` Published for Scala 2.11, 2.12, 2.13, 3. Functionality is fully supported on all platforms supported by Scala.js (including web workers). In the event that a given platform does *not* have the necessary functionality to implement `setImmediate`-style yielding (usually `postMessage` is what is required), the implementation will transparently fall back to using `setTimeout`, which will drastically inhibit performance but remain otherwise functional.