Skip to content

Commit 5d375d9

Browse files
authored
Merge pull request #3219 from ilkka/mima-links-fix
MiMa moved to lightbend-labs org
2 parents b5c37f0 + 1febb3b commit 5d375d9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

_overviews/tutorials/binary-compatibility-for-library-authors.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,11 +143,11 @@ How can we, as library authors, spare our users of runtime errors and dependency
143143

144144
## MiMa - Checking binary compatibility against previous library versions
145145

146-
[MiMa](https://github.com/lightbend/mima) is a tool for diagnosing binary incompatibilities between different library versions.
146+
[MiMa](https://github.com/lightbend-labs/mima) is a tool for diagnosing binary incompatibilities between different library versions.
147147
It works by comparing the class files of two provided JARs and report any binary incompatibilities found.
148148
Both backwards and forwards binary incompatibility can be detected by swapping input order of the JARs.
149149

150-
By incorporating MiMa's [sbt plugin](https://github.com/lightbend/mima#sbt) into your sbt build, you can easily check whether
150+
By incorporating MiMa's [sbt plugin](https://github.com/lightbend-labs/mima#sbt) into your sbt build, you can easily check whether
151151
you have accidentally introduced binary incompatible changes. Detailed instruction on how to use the sbt plugin can be found in the link.
152152

153153
We strongly encourage every library author to incorporate MiMa into their continuous integration and release workflow.
@@ -255,7 +255,7 @@ alice match
255255
Later in time, you can amend the original case class definition to, say, add an optional `address` field. You
256256
* add a new field `address` and a custom `withAddress` method,
257257
* update the public `apply` method in the companion object to initialize all the fields,
258-
* tell MiMa to [ignore](https://github.com/lightbend/mima#filtering-binary-incompatibilities) changes to the class constructor. This step is necessary because MiMa does not yet ignore changes in private class constructor signatures (see [#738](https://github.com/lightbend/mima/issues/738)).
258+
* tell MiMa to [ignore](https://github.com/lightbend-labs/mima#filtering-binary-incompatibilities) changes to the class constructor. This step is necessary because MiMa does not yet ignore changes in private class constructor signatures (see [#738](https://github.com/lightbend-labs/mima/issues/738)).
259259

260260
{% tabs case_class_compat_4 class=tabs-scala-version %}
261261
{% tab 'Scala 2' %}

0 commit comments

Comments
 (0)