-
-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Follow up to #579 The `Reader.merge` and `ReadWriter.merge` methods that don't take a `tagKey` param were retained for binary compatibility and updated to pass `Annotator.defaultTagKey` to the corresponding variant that does take a `tagKey`. This updates them to instead respect `Config#tagName`, which defaults to `Annotator.defaultTagKey` but may be overridden by downstream users. I also re-enabled mima checks and updated `mimaPreviousVersions` to just be `4.0.0`, but I'm happy to back out those changes if they're not desirable.
- Loading branch information
Showing
8 changed files
with
16 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
package upickle | ||
|
||
|
||
trait WebJson extends upickle.core.Types { | ||
trait WebJson extends upickle.core.Types { self: upickle.core.Config => | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
package upickle | ||
|
||
trait WebJson extends upickle.core.Types { | ||
trait WebJson extends upickle.core.Types { self: upickle.core.Config => | ||
|
||
} |