config/build.sbt
Havoc Pennington 2c8bf3be7e v0.2.1
2012-01-20 18:50:09 -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.2.1"
organization in GlobalScope := "com.typesafe.config"
scalacOptions in GlobalScope in Compile := Seq("-unchecked", "-deprecation")
scalacOptions in GlobalScope in Test := Seq("-unchecked", "-deprecation")