config/build.sbt
Havoc Pennington 19a05b1b2e v0.1.8 release
2011-12-09 10:21:04 -05:00

19 lines
648 B
Scala

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