Skip to content

Commit

Permalink
Release 0.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ghostbuster91 committed Apr 13, 2023
1 parent 8633d5b commit 01a6e62
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 24 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.8.2" % Test
"com.softwaremill.diffx" %% "diffx-cats" % "0.8.3" % Test
```

## mill

```scala
ivy"com.softwaremill.diffx::diffx-cats::0.8.2"
ivy"com.softwaremill.diffx::diffx-cats::0.8.3"
```

## 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.8.2" % Test
"com.softwaremill.diffx" %% "diffx-refined" % "0.8.3" % Test
```

## mill

```scala
ivy"com.softwaremill.diffx::diffx-refined::0.8.2"
ivy"com.softwaremill.diffx::diffx-refined::0.8.3"
```

## 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.8.2"
"com.softwaremill.diffx" %% "diffx-tagging" % "0.8.3"
```

## mill

```scala
ivy"com.softwaremill.diffx::diffx-tagging::0.8.2"
ivy"com.softwaremill.diffx::diffx-tagging::0.8.3"
```

## 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.8.2" % Test
"com.softwaremill.diffx" %% "diffx-munit" % "0.8.3" % Test
```

## mill

```scala
ivy"com.softwaremill.diffx::diffx-munit::0.8.2"
ivy"com.softwaremill.diffx::diffx-munit::0.8.3"
```

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

For use with `should` matchers:
```scala
"com.softwaremill.diffx" %% "diffx-scalatest-should" % "0.8.2" % Test
"com.softwaremill.diffx" %% "diffx-scalatest-should" % "0.8.3" % Test
```

For use with `must` matchers:
```scala
"com.softwaremill.diffx" %% "diffx-scalatest-must" % "0.8.2" % Test
"com.softwaremill.diffx" %% "diffx-scalatest-must" % "0.8.3" % Test
```

## mill

For use with `should` matchers:
```scala
ivy"com.softwaremill.diffx::diffx-scalatest-must::0.8.2"
ivy"com.softwaremill.diffx::diffx-scalatest-must::0.8.3"
```

For use with `must` matchers:
```scala
ivy"com.softwaremill.diffx::diffx-scalatest-must::0.8.2"
ivy"com.softwaremill.diffx::diffx-scalatest-must::0.8.3"
```

## 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.8.2" % Test
"com.softwaremill.diffx" %% "diffx-specs2" % "0.8.3" % Test
```

## mill

```scala
ivy"com.softwaremill.diffx::diffx-specs2::0.8.2"
ivy"com.softwaremill.diffx::diffx-specs2::0.8.3"
```

## 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.8.2" % Test
"com.softwaremill.diffx" %% "diffx-utest" % "0.8.3" % Test
```

## mill

```scala
ivy"com.softwaremill.diffx::diffx-utest::0.8.2"
ivy"com.softwaremill.diffx::diffx-utest::0.8.3"
```

## 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@40bc11f
// d: Diff[Person] = com.softwaremill.diffx.Diff$$anon$1@3c4f66a2
d(Person("bob", 25), Person("bob", 30))
// res2: DiffResult = DiffResultObject(
// name = "Person",
Expand Down
14 changes: 7 additions & 7 deletions generated-docs/out/usage/output.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ By default, it is set to an identical function.
```scala
implicit val showConfig = ShowConfig.default.copy(transformer = DiffResultTransformer.skipIdentical)
// showConfig: ShowConfig = ShowConfig(
// left = com.softwaremill.diffx.ShowConfig$$$Lambda$10591/0x000000080288cce0@345c9fb1,
// right = com.softwaremill.diffx.ShowConfig$$$Lambda$10591/0x000000080288cce0@64bf137c,
// missing = com.softwaremill.diffx.ShowConfig$$$Lambda$10591/0x000000080288cce0@64d0eff9,
// additional = com.softwaremill.diffx.ShowConfig$$$Lambda$10591/0x000000080288cce0@46af2758,
// default = com.softwaremill.diffx.ShowConfig$$$Lambda$10594/0x000000080288d4f0@165e992b,
// arrow = com.softwaremill.diffx.ShowConfig$$$Lambda$10591/0x000000080288cce0@ae64c6f,
// transformer = com.softwaremill.diffx.DiffResultTransformer$$$Lambda$10583/0x0000000802886bb0@69aad5ed
// left = com.softwaremill.diffx.ShowConfig$$$Lambda$10463/0x0000000802afe890@2988c7f6,
// right = com.softwaremill.diffx.ShowConfig$$$Lambda$10463/0x0000000802afe890@5f94affc,
// missing = com.softwaremill.diffx.ShowConfig$$$Lambda$10463/0x0000000802afe890@2b1e794e,
// additional = com.softwaremill.diffx.ShowConfig$$$Lambda$10463/0x0000000802afe890@65ca52ad,
// default = com.softwaremill.diffx.ShowConfig$$$Lambda$10466/0x0000000802aff058@a929e95,
// arrow = com.softwaremill.diffx.ShowConfig$$$Lambda$10463/0x0000000802afe890@70032b74,
// transformer = com.softwaremill.diffx.DiffResultTransformer$$$Lambda$10455/0x0000000802afc958@280fe833
// )
case class Person(name:String, age:Int)

Expand Down

0 comments on commit 01a6e62

Please sign in to comment.