Skip to content

Commit

Permalink
bump to 0.1.1
Browse files Browse the repository at this point in the history
to ship fix for #18
  • Loading branch information
SethTisue committed Jan 11, 2016
1 parent 3e69f31 commit 10f450b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@ incremental recompile times.

## Building the plugin from source

`sbt assembly` will create `target/scala-2.11/scala-sculpt_2.11-0.1.0.jar`.
`sbt assembly` will create `target/scala-2.11/scala-sculpt_2.11-0.1.1.jar`.
(The JAR is a fat JAR that bundles its dependency on spray-json.)

## Using the plugin

You can use the compiled plugin with the Scala 2.11 compiler as follows.

Supposing you have `scala-sculpt_2.11-0.1.0.jar` in your current working directory,
Supposing you have `scala-sculpt_2.11-0.1.1.jar` in your current working directory,

Then you can do e.g.:

scalac -Xplugin:scala-sculpt_2.11-0.1.0.jar \
scalac -Xplugin:scala-sculpt_2.11-0.1.1.jar \
-Xplugin-require:sculpt \
-P:sculpt:out=dep.json \
Dep.scala
Expand Down Expand Up @@ -123,7 +123,7 @@ manipulation, e.g. in the REPL.

Now in a Scala 2.11 REPL with the same JARs on the classpath:

scala -classpath scala-sculpt_2.11-0.1.0.jar
scala -classpath scala-sculpt_2.11-0.1.1.jar

If we load `dep.json` as follows, we'll see the following graph:

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

organization := "com.typesafe"
name := "scala-sculpt"
version := "0.1.0"
version := "0.1.1"
licenses := Seq("Apache License v2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0"))
homepage := Some(url("http://github.com/typesafehub/scala-sculpt"))

Expand Down

0 comments on commit 10f450b

Please sign in to comment.