Skip to content

Commit

Permalink
Release 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel.Rey committed Oct 24, 2016
1 parent c729447 commit 87a06d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -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")
)
Expand Down

0 comments on commit 87a06d7

Please sign in to comment.