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

Commit

Permalink
Release 0.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ghostbuster91 committed Aug 15, 2021
1 parent 1133681 commit 3901c79
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions generated-docs/out/integrations/cats.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ This module contains integration layer between [org.typelevel.cats](https://gith
## sbt

```scala
"com.softwaremill.diffx" %% "diffx-cats" % "0.5.5" % Test
"com.softwaremill.diffx" %% "diffx-cats" % "0.5.6" % Test
```

## mill

```scala
ivy"com.softwaremill.diffx::diffx-cats::0.5.5"
ivy"com.softwaremill.diffx::diffx-cats::0.5.6"
```

## Usage
Expand Down
4 changes: 2 additions & 2 deletions generated-docs/out/integrations/refined.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ This module contains integration layer between [eu.timepit.refined](https://gith
## sbt

```scala
"com.softwaremill.diffx" %% "diffx-refined" % "0.5.5" % Test
"com.softwaremill.diffx" %% "diffx-refined" % "0.5.6" % Test
```

## mill

```scala
ivy"com.softwaremill.diffx::diffx-refined::0.5.5"
ivy"com.softwaremill.diffx::diffx-refined::0.5.6"
```

## Usage
Expand Down
4 changes: 2 additions & 2 deletions generated-docs/out/integrations/tagging.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ This module contains integration layer between [com.softwaremill.common.tagging]
## sbt

```scala
"com.softwaremill.diffx" %% "diffx-tagging" % "0.5.5"
"com.softwaremill.diffx" %% "diffx-tagging" % "0.5.6"
```

## mill

```scala
ivy"com.softwaremill.diffx::diffx-tagging::0.5.5"
ivy"com.softwaremill.diffx::diffx-tagging::0.5.6"
```

## Usage
Expand Down
4 changes: 2 additions & 2 deletions generated-docs/out/test-frameworks/munit.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ To use with munit, add following dependency:
## sbt

```scala
"com.softwaremill.diffx" %% "diffx-munit" % "0.5.5" % Test
"com.softwaremill.diffx" %% "diffx-munit" % "0.5.6" % Test
```

## mill

```scala
ivy"com.softwaremill.diffx::diffx-munit::0.5.5"
ivy"com.softwaremill.diffx::diffx-munit::0.5.6"
```

## Usage
Expand Down
4 changes: 2 additions & 2 deletions generated-docs/out/test-frameworks/scalatest.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ To use with scalatest, add the following dependency:
## sbt

```scala
"com.softwaremill.diffx" %% "diffx-scalatest" % "0.5.5" % Test
"com.softwaremill.diffx" %% "diffx-scalatest" % "0.5.6" % Test
```

## mill

```scala
ivy"com.softwaremill.diffx::diffx-scalatest::0.5.5"
ivy"com.softwaremill.diffx::diffx-scalatest::0.5.6"
```

## Usage
Expand Down
4 changes: 2 additions & 2 deletions generated-docs/out/test-frameworks/specs2.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ To use with specs2, add the following dependency:
## sbt

```scala
"com.softwaremill.diffx" %% "diffx-specs2" % "0.5.5" % Test
"com.softwaremill.diffx" %% "diffx-specs2" % "0.5.6" % Test
```

## mill

```scala
ivy"com.softwaremill.diffx::diffx-specs2::0.5.5"
ivy"com.softwaremill.diffx::diffx-specs2::0.5.6"
```

## Usage
Expand Down
4 changes: 2 additions & 2 deletions generated-docs/out/test-frameworks/utest.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ To use with utest, add following dependency:
## sbt

```scala
"com.softwaremill.diffx" %% "diffx-utest" % "0.5.5" % Test
"com.softwaremill.diffx" %% "diffx-utest" % "0.5.6" % Test
```

## mill

```scala
ivy"com.softwaremill.diffx::diffx-utest::0.5.5"
ivy"com.softwaremill.diffx::diffx-utest::0.5.6"
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion generated-docs/out/usage/ignoring.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ implicit val conf: DiffConfiguration = DiffConfiguration(makeIgnored =
)
// conf: DiffConfiguration = DiffConfiguration(makeIgnored = <function1>)
val d = Diff[Person].ignore(_.age)
// d: Diff[Person] = com.softwaremill.diffx.Diff$$anon$1@7abcef55
// d: Diff[Person] = com.softwaremill.diffx.Diff$$anon$1@275c48e0
d(Person("bob", 25), Person("bob", 30))
// res2: DiffResult = DiffResultObject(
// name = "Person",
Expand Down

0 comments on commit 3901c79

Please sign in to comment.