Skip to content

Commit

Permalink
0.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
eed3si9n committed Jan 16, 2017
1 parent 269838f commit f7609c4
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 6 deletions.
1 change: 1 addition & 0 deletions .java-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1.6
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ script:
- sbt "so test"

jdk:
- openjdk6
- oraclejdk8

before_script:
- export JVM_OPTS="-Xms1024m -Xmx1024m -XX:ReservedCodeCacheSize=128m -XX:MaxPermSize=256m -Xss2m -Dfile.encoding=UTF-8"
Expand Down
15 changes: 13 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Dependencies._

val g8version = "0.7.2-SNAPSHOT"
val g8version = "0.7.2"

// posterous title needs to be giter8, so both app and root are named giter8
lazy val root = (project in file(".")).
Expand Down Expand Up @@ -31,7 +31,8 @@ lazy val root = (project in file(".")).
name := "giter8",
crossScalaVersions := List(scala210, scala211, scala212),
siteGithubRepo := "foundweekends/giter8",
siteEmail := { "eed3si9n" + "@" + "gmail.com" }
siteEmail := { "eed3si9n" + "@" + "gmail.com" },
customCommands
)

lazy val app = (project in file("app")).
Expand Down Expand Up @@ -107,3 +108,13 @@ lazy val lib = (project in file("library")).
case _ => Nil
})
)

def customCommands: Seq[Setting[_]] = Seq(
commands += Command.command("release") { state =>
"clean" ::
"so compile" ::
"so publishSigned" ::
"reload" ::
state
}
)
4 changes: 2 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ object Dependencies {
val sbtIo = "org.scala-sbt" %% "io" % "1.0.0-M7"
val scala210 = "2.10.6"
val scala211 = "2.11.8"
val scala212 = "2.12.0"
val scala212 = "2.12.1"
val scalaXml = "org.scala-lang.modules" %% "scala-xml" % "1.0.5"
val parserCombinator = "org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.3"
val parserCombinator = "org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.5"
val logback = "ch.qos.logback" % "logback-classic" % "1.1.7"
}
2 changes: 1 addition & 1 deletion src/main/conscript/g8/launchconfig
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[app]
version: 0.7.1
version: 0.7.2
org: org.foundweekends.giter8
name: giter8
class: giter8.Giter8
Expand Down

0 comments on commit f7609c4

Please sign in to comment.