config/build.sbt
2012-04-13 09:30:12 -04:00

19 lines
648 B
Scala

// to release, bump major/minor/micro as appropriate,
// update NEWS, update version in README.md, drop SNAPSHOT,
// tag and publish.
// then add snapshot back so git master is previous release
// with -SNAPSHOT.
// when releasing a SNAPSHOT to the repo, bump the micro
// version at least.
// Versions and git tags should follow: http://semver.org/
// except using -SNAPSHOT instead of without hyphen.
version in GlobalScope := "0.4.0-SNAPSHOT"
organization in GlobalScope := "com.typesafe"
scalacOptions in GlobalScope in Compile := Seq("-unchecked", "-deprecation")
scalacOptions in GlobalScope in Test := Seq("-unchecked", "-deprecation")