Skip to content

Commit 5eec742

Browse files
committed
here comes version 0.1.0
1 parent 02cde8a commit 5eec742

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@ incremental recompile times.
1616

1717
## Building the plugin from source
1818

19-
`sbt package` will create `target/scala-2.11/scala-sculpt_2.11-0.0.1.jar`.
19+
`sbt package` will create `target/scala-2.11/scala-sculpt_2.11-0.1.0.jar`.
2020

2121
## Using the plugin
2222

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

25-
First, make sure you have `scala-sculpt_2.11-0.0.1.jar` in your current working directory,
25+
Supposing you have `scala-sculpt_2.11-0.1.0.jar` in your current working directory,
2626
along with `spray-json_2.11-1.3.2.jar` (which you can download
2727
[here](http://repo1.maven.org/maven2/io/spray/spray-json_2.11/1.3.2/spray-json_2.11-1.3.2.jar).
2828

2929
Then you can do e.g.:
3030

31-
scalac -Xplugin:scala-sculpt_2.11-0.0.1.jar:spray-json_2.11-1.3.2.jar \
31+
scalac -Xplugin:scala-sculpt_2.11-0.1.0.jar:spray-json_2.11-1.3.2.jar \
3232
-Xplugin-require:sculpt \
3333
-P:sculpt:out=dep.json \
3434
Dep.scala
@@ -125,7 +125,7 @@ manipulation, e.g. in the REPL.
125125

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

128-
scala -classpath scala-sculpt_2.11-0.0.1.jar:spray-json_2.11-1.3.2.jar
128+
scala -classpath scala-sculpt_2.11-0.1.0.jar:spray-json_2.11-1.3.2.jar
129129

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

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
organization := "com.typesafe"
22
name := "scala-sculpt"
3-
version := "0.0.1"
3+
version := "0.1.0"
44
licenses := Seq("Apache License v2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0"))
55
homepage := Some(url("http://github.com/typesafehub/scala-sculpt"))
66

0 commit comments

Comments
 (0)