Skip to content
This repository has been archived by the owner on Oct 23, 2024. It is now read-only.

Setting version to 0.29.0-SNAPSHOT #24

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion project/build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ object Dependencies {
// runtime
mesos % "compile",

protobufJava % "compile",

// test
Test.scalatest % "test"
)
Expand All @@ -69,14 +71,18 @@ object Dependencies {
object Dependency {
object V {
// runtime deps versions
val Mesos = "0.28.0"
val Mesos = "0.29.0-snap1"

val ProtobufJava = "2.6.1"

// test deps versions
val ScalaTest = "2.2.1"
}

val mesos = "org.apache.mesos" % "mesos" % V.Mesos

val protobufJava = "com.google.protobuf" % "protobuf-java" % V.ProtobufJava

object Test {
val scalatest = "org.scalatest" %% "scalatest" % V.ScalaTest
}
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "0.28.1-SNAPSHOT"
version in ThisBuild := "0.29.0-SNAPSHOT"