Skip to content

Commit

Permalink
Release 0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
seblm committed Jan 4, 2022
1 parent d54ddf3 commit 7c5e574
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Here is what you will get starting from
Add this plugin to your `project/plugins.sbt` file:

```sbt
addSbtPlugin("io.github.seblm" % "sbt-jgiven-scalatest-reporter" % "0.4")
addSbtPlugin("io.github.seblm" % "sbt-jgiven-scalatest-reporter" % "0.5")
```

When you run your ScalaTest tests as usual with sbt.
Expand All @@ -28,7 +28,7 @@ Then you can visit `target/jgiven-reports/html/index.html`.
Add theses settings to your `build.sbt` file:

```sbt
libraryDependencies += "io.github.seblm" %% "jgiven-scalatest-reporter" % "0.4" % Test,
libraryDependencies += "io.github.seblm" %% "jgiven-scalatest-reporter" % "0.5" % Test,
Test / testOptions += Tests.Argument(TestFrameworks.ScalaTest, "-C", "io.github.seblm.scalatest.jgiven.JGivenHtml5Reporter"),
```

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ lazy val commonSettings = Seq(
scalacOptions += "-deprecation",
sonatypeProjectHosting :=
Some(GitHubHosting("seblm", "sbt-jgiven-scalatest-reporter", "[email protected]")),
version := "0.5-SNAPSHOT"
version := "0.5"
)

lazy val root = (project in file("."))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ object SbtJgivenScalatestReporterPlugin extends AutoPlugin {
override def trigger = allRequirements

override lazy val projectSettings = Seq(
libraryDependencies += "io.github.seblm" %% "jgiven-scalatest-reporter" % "0.5-SNAPSHOT" % Test,
libraryDependencies += "io.github.seblm" %% "jgiven-scalatest-reporter" % "0.5" % Test,
Test / testOptions +=
Tests.Argument(TestFrameworks.ScalaTest, "-C", "io.github.seblm.scalatest.jgiven.JGivenHtml5Reporter")
)
Expand Down

0 comments on commit 7c5e574

Please sign in to comment.