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

Commit 3901c79

Browse files
committed
Release 0.5.6
1 parent 1133681 commit 3901c79

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

generated-docs/out/integrations/cats.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ This module contains integration layer between [org.typelevel.cats](https://gith
55
## sbt
66

77
```scala
8-
"com.softwaremill.diffx" %% "diffx-cats" % "0.5.5" % Test
8+
"com.softwaremill.diffx" %% "diffx-cats" % "0.5.6" % Test
99
```
1010

1111
## mill
1212

1313
```scala
14-
ivy"com.softwaremill.diffx::diffx-cats::0.5.5"
14+
ivy"com.softwaremill.diffx::diffx-cats::0.5.6"
1515
```
1616

1717
## Usage

generated-docs/out/integrations/refined.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ This module contains integration layer between [eu.timepit.refined](https://gith
55
## sbt
66

77
```scala
8-
"com.softwaremill.diffx" %% "diffx-refined" % "0.5.5" % Test
8+
"com.softwaremill.diffx" %% "diffx-refined" % "0.5.6" % Test
99
```
1010

1111
## mill
1212

1313
```scala
14-
ivy"com.softwaremill.diffx::diffx-refined::0.5.5"
14+
ivy"com.softwaremill.diffx::diffx-refined::0.5.6"
1515
```
1616

1717
## Usage

generated-docs/out/integrations/tagging.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ This module contains integration layer between [com.softwaremill.common.tagging]
55
## sbt
66

77
```scala
8-
"com.softwaremill.diffx" %% "diffx-tagging" % "0.5.5"
8+
"com.softwaremill.diffx" %% "diffx-tagging" % "0.5.6"
99
```
1010

1111
## mill
1212

1313
```scala
14-
ivy"com.softwaremill.diffx::diffx-tagging::0.5.5"
14+
ivy"com.softwaremill.diffx::diffx-tagging::0.5.6"
1515
```
1616

1717
## Usage

generated-docs/out/test-frameworks/munit.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ To use with munit, add following dependency:
55
## sbt
66

77
```scala
8-
"com.softwaremill.diffx" %% "diffx-munit" % "0.5.5" % Test
8+
"com.softwaremill.diffx" %% "diffx-munit" % "0.5.6" % Test
99
```
1010

1111
## mill
1212

1313
```scala
14-
ivy"com.softwaremill.diffx::diffx-munit::0.5.5"
14+
ivy"com.softwaremill.diffx::diffx-munit::0.5.6"
1515
```
1616

1717
## Usage

generated-docs/out/test-frameworks/scalatest.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ To use with scalatest, add the following dependency:
55
## sbt
66

77
```scala
8-
"com.softwaremill.diffx" %% "diffx-scalatest" % "0.5.5" % Test
8+
"com.softwaremill.diffx" %% "diffx-scalatest" % "0.5.6" % Test
99
```
1010

1111
## mill
1212

1313
```scala
14-
ivy"com.softwaremill.diffx::diffx-scalatest::0.5.5"
14+
ivy"com.softwaremill.diffx::diffx-scalatest::0.5.6"
1515
```
1616

1717
## Usage

generated-docs/out/test-frameworks/specs2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ To use with specs2, add the following dependency:
55
## sbt
66

77
```scala
8-
"com.softwaremill.diffx" %% "diffx-specs2" % "0.5.5" % Test
8+
"com.softwaremill.diffx" %% "diffx-specs2" % "0.5.6" % Test
99
```
1010

1111
## mill
1212

1313
```scala
14-
ivy"com.softwaremill.diffx::diffx-specs2::0.5.5"
14+
ivy"com.softwaremill.diffx::diffx-specs2::0.5.6"
1515
```
1616

1717
## Usage

generated-docs/out/test-frameworks/utest.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ To use with utest, add following dependency:
55
## sbt
66

77
```scala
8-
"com.softwaremill.diffx" %% "diffx-utest" % "0.5.5" % Test
8+
"com.softwaremill.diffx" %% "diffx-utest" % "0.5.6" % Test
99
```
1010

1111
## mill
1212

1313
```scala
14-
ivy"com.softwaremill.diffx::diffx-utest::0.5.5"
14+
ivy"com.softwaremill.diffx::diffx-utest::0.5.6"
1515
```
1616

1717
## Usage

generated-docs/out/usage/ignoring.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ implicit val conf: DiffConfiguration = DiffConfiguration(makeIgnored =
4444
)
4545
// conf: DiffConfiguration = DiffConfiguration(makeIgnored = <function1>)
4646
val d = Diff[Person].ignore(_.age)
47-
// d: Diff[Person] = com.softwaremill.diffx.Diff$$anon$1@7abcef55
47+
// d: Diff[Person] = com.softwaremill.diffx.Diff$$anon$1@275c48e0
4848
d(Person("bob", 25), Person("bob", 30))
4949
// res2: DiffResult = DiffResultObject(
5050
// name = "Person",

0 commit comments

Comments
 (0)