Skip to content

Commit

Permalink
Release 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ghostbuster91 committed Apr 18, 2022
1 parent 7a876a7 commit ab58aaf
Show file tree
Hide file tree
Showing 9 changed files with 107 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.7.0" % Test
"com.softwaremill.diffx" %% "diffx-cats" % "0.7.1" % Test
```

## mill

```scala
ivy"com.softwaremill.diffx::diffx-cats::0.7.0"
ivy"com.softwaremill.diffx::diffx-cats::0.7.1"
```

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

## mill

```scala
ivy"com.softwaremill.diffx::diffx-refined::0.7.0"
ivy"com.softwaremill.diffx::diffx-refined::0.7.1"
```

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

## mill

```scala
ivy"com.softwaremill.diffx::diffx-tagging::0.7.0"
ivy"com.softwaremill.diffx::diffx-tagging::0.7.1"
```

## Usage
Expand Down
19 changes: 17 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.7.0" % Test
"com.softwaremill.diffx" %% "diffx-munit" % "0.7.1" % Test
```

## mill

```scala
ivy"com.softwaremill.diffx::diffx-munit::0.7.0"
ivy"com.softwaremill.diffx::diffx-munit::0.7.1"
```

## Usage
Expand Down Expand Up @@ -42,3 +42,18 @@ val left: Foo = Foo(
assertEqual(left, right)
```

## Versions matrix

Below table shows past Diffx releases with the corresponding munit version they were build with.
For newer versions checkout the release changelog.

| Diffx | scalatest |
|--------|:---------:|
| 0.7.0 | 0.7.29 |
| 0.6.0 | 0.7.29 |
| 0.5.6 | 0.7.28 |
| 0.5.5 | 0.7.27 |
| 0.5.4 | 0.7.27 |
| 0.5.3 | 0.7.26 |
| 0.5.2 | 0.7.26 |

29 changes: 25 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.7.0" % Test
"com.softwaremill.diffx" %% "diffx-scalatest-should" % "0.7.1" % Test
```

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

## mill

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

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

## Usage
Expand Down Expand Up @@ -56,3 +56,24 @@ val left: Foo = Foo(

left shouldMatchTo(right)
```

## Versions matrix

Below table shows past Diffx releases with the corresponding scalatest version they were build with.
For newer versions checkout the release changelog.

| Diffx | scalatest |
|--------|:---------:|
| 0.7.0 | 3.2.10 |
| 0.6.0 | 3.2.10 |
| 0.5.x | 3.2.9 |
| 0.4.5 | 3.2.6 |
| 0.4.4 | 3.2.4 |
| 0.4.3 | 3.2.4 |
| 0.4.2 | 3.2.4 |
| 0.4.1 | 3.2.3 |
| 0.4.0 | 3.2.3 |
| 0.3.30 | 3.2.3 |
| 0.3.29 | 3.1.2 |
| 0.3.28 | 3.1.1 |

31 changes: 29 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.7.0" % Test
"com.softwaremill.diffx" %% "diffx-specs2" % "0.7.1" % Test
```

## mill

```scala
ivy"com.softwaremill.diffx::diffx-specs2::0.7.0"
ivy"com.softwaremill.diffx::diffx-specs2::0.7.1"
```

## Usage
Expand Down Expand Up @@ -42,3 +42,30 @@ val left: Foo = Foo(

left must matchTo(right)
```

## Versions matrix

Below table shows past Diffx releases with the corresponding specs2 version they were build with.
For newer versions checkout the release changelog.

| Diffx | scalatest |
|--------|:------------:|
| 0.7.0 | 4.13.1 |
| 0.6.0 | 4.13.0 |
| 0.5.6 | 4.12.4-js-ec |
| 0.5.5 | 4.12.4-js-ec |
| 0.5.4 | 4.12.3 |
| 0.5.3 | 4.12.1 |
| 0.5.2 | 4.12.1 |
| 0.5.1 | 4.12.1 |
| 0.5.0 | 4.12.1 |
| 0.4.5 | 4.10.6 |
| 0.4.4 | 4.10.6 |
| 0.4.3 | 4.10.6 |
| 0.4.2 | 4.10.6 |
| 0.4.1 | 4.10.6 |
| 0.4.0 | 4.10.5 |
| 0.3.30 | 4.10.5 |
| 0.3.29 | 4.9.4 |
| 0.3.28 | 4.9.3 |

24 changes: 22 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.7.0" % Test
"com.softwaremill.diffx" %% "diffx-utest" % "0.7.1" % Test
```

## mill

```scala
ivy"com.softwaremill.diffx::diffx-utest::0.7.0"
ivy"com.softwaremill.diffx::diffx-utest::0.7.1"
```

## Usage
Expand Down Expand Up @@ -42,3 +42,23 @@ val left: Foo = Foo(
assertEqual(left, right)
```

## Versions matrix

Below table shows past Diffx releases with the corresponding utest version they were build with.
For newer versions checkout the release changelog.

| Diffx | scalatest |
|--------|:---------:|
| 0.7.0 | 0.7.10 |
| 0.6.0 | 0.7.10 |
| 0.5.x | 0.7.10 |
| 0.4.5 | 0.7.7 |
| 0.4.4 | 0.7.7 |
| 0.4.3 | 0.7.7 |
| 0.4.2 | 0.7.7 |
| 0.4.1 | 0.7.7 |
| 0.4.0 | 0.7.5 |
| 0.3.30 | 0.7.5 |
| 0.3.29 | 0.7.4 |
| 0.3.28 | 0.7.4 |

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@71ed624c
// d: Diff[Person] = com.softwaremill.diffx.Diff$$anon$1@5d572744
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$11597/0x0000000842d62840@4292838c,
// right = com.softwaremill.diffx.ShowConfig$$$Lambda$11597/0x0000000842d62840@7e50258,
// missing = com.softwaremill.diffx.ShowConfig$$$Lambda$11597/0x0000000842d62840@5a59b1a9,
// additional = com.softwaremill.diffx.ShowConfig$$$Lambda$11597/0x0000000842d62840@352a9ee1,
// default = com.softwaremill.diffx.ShowConfig$$$Lambda$11600/0x0000000842d61840@6372f52b,
// arrow = com.softwaremill.diffx.ShowConfig$$$Lambda$11597/0x0000000842d62840@4c2adcdf,
// transformer = com.softwaremill.diffx.DiffResultTransformer$$$Lambda$11636/0x0000000842d02840@5b69f80a
// left = com.softwaremill.diffx.ShowConfig$$$Lambda$10184/0x0000000802892b88@163530b,
// right = com.softwaremill.diffx.ShowConfig$$$Lambda$10184/0x0000000802892b88@382468a7,
// missing = com.softwaremill.diffx.ShowConfig$$$Lambda$10184/0x0000000802892b88@2013f8f6,
// additional = com.softwaremill.diffx.ShowConfig$$$Lambda$10184/0x0000000802892b88@453c98de,
// default = com.softwaremill.diffx.ShowConfig$$$Lambda$10187/0x0000000802893398@5edc7079,
// arrow = com.softwaremill.diffx.ShowConfig$$$Lambda$10184/0x0000000802892b88@45a65a55,
// transformer = com.softwaremill.diffx.DiffResultTransformer$$$Lambda$10221/0x000000080262c000@7a4dde5f
// )
case class Person(name:String, age:Int)

Expand Down

0 comments on commit ab58aaf

Please sign in to comment.