Skip to content

Commit 4fb51ee

Browse files
committed
cross release for 2.13
technically scala-arm isn't necessary for scala 2.13 any more, but if your project is cross-compiling with older versions and you don't want to split your sources, it'd be good to have a cross release. Until josh publishes the 'official' version, I'll publish my fork to maven central re jsuereth#79
1 parent cd80674 commit 4fb51ee

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

build.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,9 @@ lazy val websiteSettings: Seq[Setting[_]] = Seq(
112112
val arm = project.in(file(".")).
113113
enablePlugins(SiteScaladocPlugin).
114114
settings(Seq(
115-
organization := "com.jsuereth",
115+
organization := "com.michaelpollmeier",
116116
name := "scala-arm",
117-
scalaVersion := "2.12.8",
117+
scalaVersion := "2.13.0",
118118
crossScalaVersions := Seq(
119119
"2.10.7", "2.11.12", scalaVersion.value, "2.13.0"),
120120
resolvers += "java.net repo" at "http://download.java.net/maven/2/",

src/main/scala/resource/ExtractableManagedResource.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ trait ExtractableManagedResource[+A] extends ManagedResource[A] {
4242
* This allows you to pull information out of the Managed resource, as such, the Resource will not be "available"
4343
* after this method call.
4444
*
45-
* @returns
45+
* @return
4646
* An either where the right hand side is the currently contained resource unless exceptions, in which case
4747
* the left hand side will contain the sequence of throwable encountered.
4848
*/

version.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "2.1-SNAPSHOT"
1+
version in ThisBuild := "2.1"

0 commit comments

Comments
 (0)