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

Commit e7b6a56

Browse files
author
jbwheatley
committed
Setting version to 4.3.1-SNAPSHOT
1 parent b1c962b commit e7b6a56

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
@@ -6,7 +6,7 @@ Scala-Pact is intended for Scala developers who are looking for a better way to
66

77
If you are just starting out on your pact journey in scala, we recommend checking out [pact4s](https://github.com/jbwheatley/pact4s). This is built directly on top of pact-jvm, and provides support for writing and verifying contracts using [scalaTest](https://github.com/scalatest/scalatest), [weaver-test](https://github.com/disneystreaming/weaver-test), and [munit-cats-effect-3](https://github.com/typelevel/munit-cats-effect).
88

9-
## Latest version is 4.3.0
9+
## Latest version is 4.4.0
1010

1111
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.
1212

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

1717
Scala-Pact now has two branches based on SBT requirements.
1818

19-
#### SBT 1.x compatible (Latest 4.3.0)
19+
#### SBT 1.x compatible (Latest 4.4.0)
2020

2121
All development going forward begins at `2.3.x` and resides on the `master` branch.
2222
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.
@@ -52,14 +52,14 @@ import com.itv.scalapact.plugin._
5252
enablePlugins(ScalaPactPlugin)
5353

5454
libraryDependencies ++= Seq(
55-
"com.itv" %% "scalapact-scalatest-suite" % "4.3.0" % "test",
55+
"com.itv" %% "scalapact-scalatest-suite" % "4.4.0" % "test",
5656
"org.scalatest" %% "scalatest" % "3.2.9" % "test"
5757
)
5858
```
5959

6060
Add this line to your `project/plugins.sbt` file to install the plugin:
6161
```scala
62-
addSbtPlugin("com.itv" % "sbt-scalapact" % "4.3.0")
62+
addSbtPlugin("com.itv" % "sbt-scalapact" % "4.4.0")
6363
```
6464

6565
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).
@@ -75,27 +75,27 @@ import com.itv.scalapact.plugin._
7575
enablePlugins(ScalaPactPlugin)
7676

7777
libraryDependencies ++= Seq(
78-
"com.itv" %% "scalapact-circe-0-13" % "4.3.0" % "test",
79-
"com.itv" %% "scalapact-http4s-0-21" % "4.3.0" % "test",
80-
"com.itv" %% "scalapact-scalatest" % "4.3.0" % "test",
78+
"com.itv" %% "scalapact-circe-0-13" % "4.4.0" % "test",
79+
"com.itv" %% "scalapact-http4s-0-21" % "4.4.0" % "test",
80+
"com.itv" %% "scalapact-scalatest" % "4.4.0" % "test",
8181
"org.scalatest" %% "scalatest" % "3.2.9" % "test"
8282
)
8383
```
8484

8585
Add this line to your `project/plugins.sbt` file to install the plugin:
8686
```scala
87-
addSbtPlugin("com.itv" % "sbt-scalapact" % "4.3.0")
87+
addSbtPlugin("com.itv" % "sbt-scalapact" % "4.4.0")
8888
```
8989
This version of the plugin comes pre-packaged with the latest JSON and Http libraries.
9090
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:
9191

9292
```scala
9393
libraryDependencies ++= Seq(
94-
"com.itv" %% "scalapact-argonaut-6-2" % "4.3.0",
95-
"com.itv" %% "scalapact-http4s-0-21" % "4.3.0"
94+
"com.itv" %% "scalapact-argonaut-6-2" % "4.4.0",
95+
"com.itv" %% "scalapact-http4s-0-21" % "4.4.0"
9696
)
9797

98-
addSbtPlugin("com.itv" % "sbt-scalapact-nodeps" % "4.3.0")
98+
addSbtPlugin("com.itv" % "sbt-scalapact-nodeps" % "4.4.0")
9999
```
100100

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

0 commit comments

Comments
 (0)