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.
|
|
|
|
// then add snapshot back so git master is previous 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
|
|
|
|
2012-03-02 01:10:03 +08:00
|
|
|
version in GlobalScope := "0.3.0-SNAPSHOT"
|
2011-11-13 06:45:12 +08:00
|
|
|
|
2011-12-01 05:30:03 +08:00
|
|
|
organization in GlobalScope := "com.typesafe.config"
|
2011-11-13 06:45:12 +08:00
|
|
|
|
2011-12-01 05:30:03 +08:00
|
|
|
scalacOptions in GlobalScope in Compile := Seq("-unchecked", "-deprecation")
|
|
|
|
|
|
|
|
scalacOptions in GlobalScope in Test := Seq("-unchecked", "-deprecation")
|