Skip to content
This repository was archived by the owner on Feb 20, 2019. It is now read-only.

Commit c28608e

Browse files
committed
Merge pull request #238 from scala/README-updates
README update, we now have a 0.10.0-SNAPSHOT
2 parents 8fd9c32 + f7d1d05 commit c28608e

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
scala/pickling
22
==============
33

4-
[![Build Status](https://travis-ci.org/scala/pickling.svg?branch=0.9.x)](https://travis-ci.org/scala/pickling.svg?branch=0.9.x)
4+
[![Build Status](https://travis-ci.org/scala/pickling.svg?branch=0.9.x)](https://travis-ci.org/scala/pickling/)
55
[![Stories in Ready](https://badge.waffle.io/scala/pickling.png?label=ready&title=Ready)](http://waffle.io/scala/pickling)
66

77

@@ -38,17 +38,25 @@ You can use Scala Pickling in your sbt project by simply adding the following de
3838
libraryDependencies += "org.scala-lang" %% "scala-pickling" % "0.9.0"
3939
```
4040

41-
If you would like to run the latest development version of scala/pickling (0.9.1-SNAPHSHOT), you also need to add the Sonatype "snapshots" repository resolver to your build file:
41+
If you would like to run the latest development version of scala/pickling (0.9.1-SNAPHSHOT, or 0.10.0-SNAPSHOT), you also need to add the Sonatype "snapshots" repository resolver to your build file:
4242

4343
```scala
4444
libraryDependencies += "org.scala-lang" %% "scala-pickling" % "0.9.1-SNAPSHOT"
4545

4646
resolvers += Resolver.sonatypeRepo("snapshots")
4747
```
4848

49+
or,
50+
51+
```scala
52+
libraryDependencies += "org.scala-lang" %% "scala-pickling" % "0.10.0-SNAPSHOT"
53+
54+
resolvers += Resolver.sonatypeRepo("snapshots")
55+
```
56+
4957
For a more illustrative example, see a [sample sbt project which uses Scala Pickling](https://github.com/xeno-by/sbt-example-pickling).
5058

51-
Or you can just directly download the jar ([Scala 2.10](https://oss.sonatype.org/service/local/artifact/maven/redirect?r=releases&g=org.scala-lang&a=scala-pickling_2.10&v=0.9.0&e=jar), [Scala 2.11](https://oss.sonatype.org/service/local/artifact/maven/redirect?r=releases&g=org.scala-lang&a=scala-pickling_2.11&v=0.9.0&e=jar)).
59+
Or you can just directly download the 0.9.0 jar ([Scala 2.10](https://oss.sonatype.org/service/local/artifact/maven/redirect?r=releases&g=org.scala-lang&a=scala-pickling_2.10&v=0.9.0&e=jar), [Scala 2.11](https://oss.sonatype.org/service/local/artifact/maven/redirect?r=releases&g=org.scala-lang&a=scala-pickling_2.11&v=0.9.0&e=jar)).
5260

5361
## What makes it different?
5462

0 commit comments

Comments
 (0)