Skip to content

Commit

Permalink
Release 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
seblm committed Jan 13, 2024
1 parent c3e9710 commit 216279a
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" % "1.0.1")
addSbtPlugin("io.github.seblm" % "sbt-jgiven-scalatest-reporter" % "1.0.2")
```

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" % "1.0.1" % Test
libraryDependencies += "io.github.seblm" %% "jgiven-scalatest-reporter" % "1.0.2" % 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 := "1.0.1"
version := "1.0.2"
)

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[Setting[_]] = Seq(
libraryDependencies += "io.github.seblm" %% "jgiven-scalatest-reporter" % "1.0.1" % Test,
libraryDependencies += "io.github.seblm" %% "jgiven-scalatest-reporter" % "1.0.2" % Test,
Test / testOptions +=
Tests.Argument(TestFrameworks.ScalaTest, "-C", "io.github.seblm.scalatest.jgiven.JGivenHtml5Reporter")
)
Expand Down

0 comments on commit 216279a

Please sign in to comment.