Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: scala/scala-collection-compat
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.9.0
Choose a base ref
...
head repository: scala/scala-collection-compat
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.10.0
Choose a head ref
  • 14 commits
  • 9 files changed
  • 7 contributors

Commits on Jan 10, 2023

  1. Copy the full SHA
    bf8983b View commit details
  2. copyright 2023 (#576)

    SethTisue authored Jan 10, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    dzuelke David Zülke
    Copy the full SHA
    42c9451 View commit details

Commits on Jan 26, 2023

  1. use ScalaNativeJUnitPlugin

    xuwei-k committed Jan 26, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    dzuelke David Zülke
    Copy the full SHA
    209491f View commit details

Commits on Feb 13, 2023

  1. Verified

    This commit was signed with the committer’s verified signature.
    Ilyes512 Ilyes512
    Copy the full SHA
    d27b1a5 View commit details

Commits on Feb 14, 2023

  1. Run scalafmt

    RustedBones committed Feb 14, 2023
    Copy the full SHA
    76f76fd View commit details

Commits on Feb 16, 2023

  1. Copy the full SHA
    37d2d5c View commit details

Commits on Mar 31, 2023

  1. Split up Using.scala into 2.11 and 2.12 versions

    This is so that a Source can be automatically released in 2.11
    kwalcock committed Mar 31, 2023
    Copy the full SHA
    267f2fc View commit details

Commits on Apr 10, 2023

  1. Copy the full SHA
    4fbfad2 View commit details

Commits on Apr 12, 2023

  1. test

    lrytz committed Apr 12, 2023
    Copy the full SHA
    9d64f5c View commit details
  2. Merge pull request #581 from RustedBones/typed-can-build-from

    Make ArraySeq extends IndexedSeqOptimized
    lrytz authored Apr 12, 2023
    Copy the full SHA
    cd00be9 View commit details
  3. Run scalafmt

    kwalcock committed Apr 12, 2023
    Copy the full SHA
    5b8e925 View commit details

Commits on Apr 21, 2023

  1. Copy the full SHA
    be0267f View commit details

Commits on Apr 24, 2023

  1. 1
    Copy the full SHA
    0eeff57 View commit details
  2. Copy the full SHA
    159bd21 View commit details
4 changes: 2 additions & 2 deletions NOTICE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
scala-collection-compat
Copyright (c) 2002-2022 EPFL
Copyright (c) 2011-2022 Lightbend, Inc.
Copyright (c) 2002-2023 EPFL
Copyright (c) 2011-2023 Lightbend, Inc.

Scala includes software developed at
LAMP/EPFL (https://lamp.epfl.ch/) and
10 changes: 4 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -53,7 +53,7 @@ lazy val junit = libraryDependencies += "com.github.sbt" % "junit-interface" % "
lazy val scala211 = "2.11.12"
lazy val scala212 = "2.12.17"
lazy val scala213 = "2.13.10"
lazy val scala3 = "3.1.3"
lazy val scala3 = "3.2.2"

lazy val compat = new MultiScalaCrossProject(
"compat",
@@ -133,9 +133,6 @@ lazy val compat = new MultiScalaCrossProject(
).jsEnablePlugins(ScalaJSJUnitPlugin),
_.nativeSettings(
nativeLinkStubs := true,
addCompilerPlugin(
"org.scala-native" % "junit-plugin" % nativeVersion cross CrossVersion.full
),
mimaPreviousArtifacts := (CrossVersion.partialVersion(scalaVersion.value) match {
case Some((3, 1)) => mimaPreviousArtifacts.value.filter(_.revision != "2.6.0")
case _ => mimaPreviousArtifacts.value
@@ -149,9 +146,10 @@ lazy val compat = new MultiScalaCrossProject(
jsAndNativeSourcesParent / "scala-2.11_2.12"
}
},
libraryDependencies += "org.scala-native" %%% "junit-runtime" % nativeVersion,
versionPolicyIntention := Compatibility.None,
versionCheck := {}, // I don't understand why this fails otherwise?! oh well
Test / fork := false // Scala Native cannot run forked tests
)
).nativeEnablePlugins(ScalaNativeJUnitPlugin)
)

val compat211 = compat(Seq(JSPlatform, JVMPlatform, NativePlatform), scala211)
Loading