-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15794 from dwijnand/bp/bridgeChanges
- Loading branch information
Showing
19 changed files
with
65 additions
and
28 deletions.
There are no files selected for viewing
Submodule discipline
updated
6 files
+58 −32 | .github/workflows/ci.yml | |
+1 −1 | .scalafmt.conf | |
+3 −3 | README.md | |
+18 −14 | build.sbt | |
+1 −1 | project/build.properties | |
+4 −4 | project/plugins.sbt |
Submodule discipline-munit
updated
11 files
+256 −0 | .github/workflows/ci.yml | |
+59 −0 | .github/workflows/clean.yml | |
+0 −23 | .github/workflows/release.yml | |
+0 −27 | .github/workflows/scala.yml | |
+1 −1 | .scalafmt.conf | |
+12 −45 | build.sbt | |
+30 −0 | core/shared/src/main/scala/munit/DisciplineSuite.scala | |
+30 −0 | core/shared/src/test/scala/munit/DisciplineSuiteTest.scala | |
+30 −0 | core/shared/src/test/scala/munit/laws.scala | |
+1 −1 | project/build.properties | |
+4 −10 | project/plugins.sbt |
Submodule munit-cats-effect
updated
11 files
Submodule scala-java8-compat
updated
19 files
Submodule scalacheck
updated
88 files
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 +1 @@ | ||
sbt.version=1.6.2 | ||
sbt.version=1.7.1 |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package dotty.tools.xsbt; | ||
|
||
import java.util.Optional; | ||
|
||
final public class DiagnosticCode implements xsbti.DiagnosticCode { | ||
private final String _code; | ||
private final Optional<String> _explanation; | ||
|
||
public DiagnosticCode(String code, Optional<String> explanation) { | ||
super(); | ||
this._code = code; | ||
this._explanation = explanation; | ||
} | ||
|
||
public String code() { | ||
return _code; | ||
} | ||
|
||
public Optional<String> explanation() { | ||
return _explanation; | ||
} | ||
|
||
} |
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
2 changes: 1 addition & 1 deletion
2
sbt-test/sbt-dotty/dotty-knowledge.i17/project/build.properties
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 +1 @@ | ||
sbt.version=1.6.2 | ||
sbt.version=1.7.1 |
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 +1 @@ | ||
sbt.version=1.6.2 | ||
sbt.version=1.7.1 |
2 changes: 1 addition & 1 deletion
2
tests/cmdTest-sbt-tests/sourcepath-with-inline-api-hash/project/build.properties
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 +1 @@ | ||
sbt.version=1.6.2 | ||
sbt.version=1.7.1 |
2 changes: 1 addition & 1 deletion
2
tests/cmdTest-sbt-tests/sourcepath-with-inline/project/build.properties
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 +1 @@ | ||
sbt.version=1.6.2 | ||
sbt.version=1.7.1 |
d6bea06
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dwijnand Line 41 in source file
simple/project/Reporter.java
is useless right ?!d6bea06
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes it is.