diff --git a/cornichon-docs/docs/installation.md b/cornichon-docs/docs/installation.md index d5517ba5..7bff80ba 100644 --- a/cornichon-docs/docs/installation.md +++ b/cornichon-docs/docs/installation.md @@ -14,14 +14,14 @@ The library is compatible with [SBT](https://www.scala-sbt.org/) and [Mill](http ``` scala // SBT -libraryDependencies += "com.github.agourlay" %% "cornichon-test-framework" % "0.21.0" % Test +libraryDependencies += "com.github.agourlay" %% "cornichon-test-framework" % "0.21.1" % Test testFrameworks += new TestFramework("com.github.agourlay.cornichon.framework.CornichonFramework") ``` ```scala // Mill object test extends Tests { - def ivyDeps = Agg(ivy"com.github.agourlay::cornichon-test-framework:0.21.0") + def ivyDeps = Agg(ivy"com.github.agourlay::cornichon-test-framework:0.21.1") def testFrameworks = Seq("com.github.agourlay.cornichon.framework.CornichonFramework") } ```