diff --git a/README.md b/README.md index 8876b7c..9e3d2a2 100755 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ you can user our bill of materials. This is recommended. The release process of ScalaWebTest is currently done manually. The process is done as follows: 1. Switch the version in `build.sbt` to that which is to be released (e.g. from `0.0.1-SNAPSHOT` to `1.0.0`) -2. Commit your changes with the commit message "Release x.x.x" (e.g. `Release 1.0.0`) +2. Commit and push your changes with the commit message "Release x.x.x" (e.g. `Release 1.0.0`) 3. In your command line type in the following: 1. the fast way: 1. `sbt clean compile` @@ -68,7 +68,7 @@ The release process of ScalaWebTest is currently done manually. The process is d 1. `sbt` - enters the sbt interactive mode 2. `clean` - deletes all generated files (target) 3. `compile` - compiles the main sources - 4. `inttest` - compiles the integration test sources + 4. `inttest` - compiles and run the integration tests 5. `publishLocal` - creates all of the below plus the poms 1. `package` - creates jars 2. `packageDoc` - creates javadoc jars diff --git a/build.sbt b/build.sbt index 7cb3f9e..777fe22 100755 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ lazy val commonSettings = Seq( organization := "org.scalawebtest", - version := "1.0.1-SNAPSHOT", + version := "1.0.1", scalaVersion := "2.11.8", scalacOptions := Seq("-unchecked", "-deprecation") )