Skip to content

Commit 66fbf9c

Browse files
author
reidspencer
committed
Upgrade RIDDL, Fix helper facades
1 parent 01c7909 commit 66fbf9c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/scala/com/ossuminc/sbt/OssumIncPlugin.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ object OssumIncPlugin extends AutoPlugin {
3030

3131
def akka: ConfigFunc = helpers.Akka.configure
3232

33-
def Akka: helpers.Akka.type = helpers.Akka
33+
def Akka = helpers.Akka
3434

3535
/** Use this to provide dependencies on most recent Akka libraries */
3636

@@ -118,7 +118,7 @@ object OssumIncPlugin extends AutoPlugin {
118118

119119
/** Configure dependency on a version of the RIDDL library */
120120
def riddl: ConfigFunc = helpers.Riddl.configure
121-
def Riddl: helpers.Riddl.type = helpers.Riddl
121+
def Riddl = helpers.Riddl
122122

123123
/** Compile scala code as Scala 2.13.latest */
124124
def scala2: ConfigFunc = helpers.Scala2.configure

src/main/scala/com/ossuminc/sbt/helpers/Riddl.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import sbt.Keys.libraryDependencies
66

77
object Riddl extends AutoPluginHelper {
88

9-
val latest_version = "1.0.0-RC5"
9+
val latest_version = "1.0.0-RC6"
1010

1111
override def configure(project: Project) = testKit()(project)
1212

0 commit comments

Comments
 (0)