config/build.sbt

19 lines
648 B
Plaintext
Raw Normal View History

2011-11-09 13:07:21 +08:00
// to release, bump major/minor/micro as appropriate,
2012-03-02 03:07:02 +08:00
// update NEWS, update version in README.md, drop SNAPSHOT,
// tag and publish.
2012-05-23 05:26:51 +08:00
// then add snapshot back so git master is upcoming 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.
2011-11-08 04:31:23 +08:00
version in GlobalScope := "1.0.1-SNAPSHOT"
2011-11-13 06:45:12 +08:00
organization in GlobalScope := "com.typesafe"
2011-11-13 06:45:12 +08:00
scalacOptions in GlobalScope in Compile := Seq("-unchecked", "-deprecation")
scalacOptions in GlobalScope in Test := Seq("-unchecked", "-deprecation")