2011-11-09 13:07:21 +08:00
|
|
|
|
2011-12-01 05:30:03 +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
|
2011-12-01 05:30:03 +08:00
|
|
|
// 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
|
|
|
|
2013-06-21 21:57:56 +08:00
|
|
|
version in GlobalScope := "1.1.0-SNAPSHOT"
|
2011-11-13 06:45:12 +08:00
|
|
|
|
2012-04-13 03:21:06 +08:00
|
|
|
organization in GlobalScope := "com.typesafe"
|
2011-11-13 06:45:12 +08:00
|
|
|
|
2013-06-25 22:25:42 +08:00
|
|
|
scalacOptions in GlobalScope in Compile := Seq("-unchecked", "-deprecation", "-feature")
|
|
|
|
|
|
|
|
scalacOptions in GlobalScope in Test := Seq("-unchecked", "-deprecation", "-feature")
|
|
|
|
|
|
|
|
scalaVersion in ThisBuild := "2.10.2"
|
2011-12-01 05:30:03 +08:00
|
|
|
|