Skip to content
This repository was archived by the owner on Aug 21, 2025. It is now read-only.

Commit b610490

Browse files
author
jbwheatley
committed
Setting version to 3.2.1-SNAPSHOT
1 parent 059ebcd commit b610490

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A Consumer Driven Contract testing library for Scala and [ScalaTest](http://www.
44

55
Scala-Pact is intended for Scala developers who are looking for a better way to manage the HTTP contracts between their services.
66

7-
## Latest version is 3.2.0
7+
## Latest version is 3.2.1
88

99
Scala-Pact currently only supports [v2 of the pact specification](https://github.com/pact-foundation/pact-specification/tree/version-2). Support for v3 is a future goal of the project.
1010

@@ -14,7 +14,7 @@ Before this version, the project versioning did not follow semantic versioning.
1414

1515
Scala-Pact now has two branches based on SBT requirements.
1616

17-
#### SBT 1.x compatible (Latest 3.2.0)
17+
#### SBT 1.x compatible (Latest 3.2.1)
1818

1919
All development going forward begins at `2.3.x` and resides on the `master` branch.
2020
For the sake of the maintainer's sanity, version 2.3.x and beyond will only support Scala 2.12 and SBT 1.x or greater. The project is currently cross-compiled across scala 2.12.12 and 2.13.4.
@@ -50,14 +50,14 @@ import com.itv.scalapact.plugin._
5050
enablePlugins(ScalaPactPlugin)
5151

5252
libraryDependencies ++= Seq(
53-
"com.itv" %% "scalapact-scalatest-suite" % "3.2.0" % "test",
53+
"com.itv" %% "scalapact-scalatest-suite" % "3.2.1" % "test",
5454
"org.scalatest" %% "scalatest" % "3.0.5" % "test"
5555
)
5656
```
5757

5858
Add this line to your `project/plugins.sbt` file to install the plugin:
5959
```scala
60-
addSbtPlugin("com.itv" % "sbt-scalapact" % "3.2.0")
60+
addSbtPlugin("com.itv" % "sbt-scalapact" % "3.2.1")
6161
```
6262

6363
Both the import and the plugin come pre-packaged with the latest JSON and Http libraries (http4s 0.21.x, and circe 0.13.x).
@@ -73,27 +73,27 @@ import com.itv.scalapact.plugin._
7373
enablePlugins(ScalaPactPlugin)
7474

7575
libraryDependencies ++= Seq(
76-
"com.itv" %% "scalapact-circe-0-13" % "3.2.0" % "test",
77-
"com.itv" %% "scalapact-http4s-0-21" % "3.2.0" % "test",
78-
"com.itv" %% "scalapact-scalatest" % "3.2.0" % "test",
76+
"com.itv" %% "scalapact-circe-0-13" % "3.2.1" % "test",
77+
"com.itv" %% "scalapact-http4s-0-21" % "3.2.1" % "test",
78+
"com.itv" %% "scalapact-scalatest" % "3.2.1" % "test",
7979
"org.scalatest" %% "scalatest" % "3.0.5" % "test"
8080
)
8181
```
8282

8383
Add this line to your `project/plugins.sbt` file to install the plugin:
8484
```scala
85-
addSbtPlugin("com.itv" % "sbt-scalapact" % "3.2.0")
85+
addSbtPlugin("com.itv" % "sbt-scalapact" % "3.2.1")
8686
```
8787
This version of the plugin comes pre-packaged with the latest JSON and Http libraries.
8888
Thanks to the way SBT works, that one plugin line will work in most cases, but if you're still having conflicts, you can also do this to use your preferred libraries:
8989

9090
```scala
9191
libraryDependencies ++= Seq(
92-
"com.itv" %% "scalapact-argonaut-6-2" % "3.2.0",
93-
"com.itv" %% "scalapact-http4s-0-21" % "3.2.0"
92+
"com.itv" %% "scalapact-argonaut-6-2" % "3.2.1",
93+
"com.itv" %% "scalapact-http4s-0-21" % "3.2.1"
9494
)
9595

96-
addSbtPlugin("com.itv" % "sbt-scalapact-nodeps" % "3.2.0")
96+
addSbtPlugin("com.itv" % "sbt-scalapact-nodeps" % "3.2.1")
9797
```
9898

9999
In your test suite, you will need the following imports:

0 commit comments

Comments
 (0)