Skip to content

Commit

Permalink
Bump version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
romac committed May 28, 2019
1 parent b5f42f7 commit cfac3aa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions bin/package-standalone.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,18 @@
# ====
set -e

STAINLESS_VERSION="0.2.0"
SCALA_VERSION="2.12"
Z3_VERSION="4.7.1"

SBT_PACKAGE="sbt stainless-scalac-standalone/assembly"
STAINLESS_JAR_PATH="./frontends/stainless-scalac-standalone/target/scala-$SCALA_VERSION/stainless-scalac-standalone-0.1.0.jar"
STAINLESS_JAR_PATH="./frontends/stainless-scalac-standalone/target/scala-$SCALA_VERSION/stainless-scalac-standalone-$STAINLESS_VERSION.jar"
SCALAZ3_JAR_LINUX_PATH="./unmanaged/scalaz3-unix-64-$SCALA_VERSION.jar"
SCALAZ3_JAR_OSX_PATH="./unmanaged/scalaz3-mac-64-$SCALA_VERSION.jar"

Z3_GITHUB_URL="https://github.com/Z3Prover/z3/releases/download/z3-4.6.0"
Z3_LINUX_NAME="z3-4.6.0-x64-ubuntu-16.04.zip"
Z3_OSX_NAME="z3-4.6.0-x64-osx-10.11.6.zip"
Z3_GITHUB_URL="https://github.com/Z3Prover/z3/releases/download/z3-$Z3_VERSION"
Z3_LINUX_NAME="z3-$Z3_VERSION-x64-ubuntu-16.04.zip"
Z3_OSX_NAME="z3-$Z3_VERSION-x64-osx-10.11.6.zip"

LOG="./package-standalone.log"

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import sbt.ScriptedPlugin

enablePlugins(GitVersioning)
git.baseVersion in ThisBuild := "0.1.0"
git.baseVersion in ThisBuild := "0.2.0"
git.formattedShaVersion in ThisBuild := git.gitHeadCommit.value map { sha => s"${git.baseVersion.value}-${sha}" }

val osInf = Option(System.getProperty("os.name")).getOrElse("")
Expand Down

0 comments on commit cfac3aa

Please sign in to comment.