Skip to content

Commit

Permalink
pointing README to 2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Billings committed Sep 13, 2019
1 parent 7e62a2e commit 82a4f21
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ Quick links:
* [Docs and getting help](#docs)

[microsite]: http://fs2.io/index.html
[core-api]: https://oss.sonatype.org/service/local/repositories/releases/archive/co/fs2/fs2-core_2.12/1.0.4/fs2-core_2.12-1.0.4-javadoc.jar/!/fs2/index.html
[io-api]: https://oss.sonatype.org/service/local/repositories/releases/archive/co/fs2/fs2-io_2.12/1.0.4/fs2-io_2.12-1.0.4-javadoc.jar/!/fs2/io/index.html
[rx-api]: https://oss.sonatype.org/service/local/repositories/releases/archive/co/fs2/fs2-reactive-streams_2.12/1.0.4/fs2-reactive-streams_2.12-1.0.4-javadoc.jar/!/fs2/interop/reactivestreams/index.html
[experimental-api]: https://oss.sonatype.org/service/local/repositories/releases/archive/co/fs2/fs2-experimental_2.12/1.0.4/fs2-experimental_2.12-1.0.4-javadoc.jar/!/fs2/experimental/index.html
[core-api]: https://oss.sonatype.org/service/local/repositories/releases/archive/co/fs2/fs2-core_2.12/2.0.0/fs2-core_2.12-2.0.0-javadoc.jar/!/fs2/index.html
[io-api]: https://oss.sonatype.org/service/local/repositories/releases/archive/co/fs2/fs2-io_2.12/2.0.0/fs2-io_2.12-2.0.0-javadoc.jar/!/fs2/io/index.html
[rx-api]: https://oss.sonatype.org/service/local/repositories/releases/archive/co/fs2/fs2-reactive-streams_2.12/2.0.0/fs2-reactive-streams_2.12-2.0.0-javadoc.jar/!/fs2/interop/reactivestreams/index.html
[experimental-api]: https://oss.sonatype.org/service/local/repositories/releases/archive/co/fs2/fs2-experimental_2.12/2.0.0/fs2-experimental_2.12-2.0.0-javadoc.jar/!/fs2/experimental/index.html

### <a id="getit"></a> Where to get the latest version ###

Expand All @@ -38,16 +38,16 @@ summarizes the differences between 1.0 and 0.10. To get 1.0.x, add the following

```
// available for Scala 2.11, 2.12
libraryDependencies += "co.fs2" %% "fs2-core" % "1.0.4" // For cats 1.5.0 and cats-effect 1.2.0
libraryDependencies += "co.fs2" %% "fs2-core" % "2.0.0" // For cats 1.5.0 and cats-effect 1.2.0
// optional I/O library
libraryDependencies += "co.fs2" %% "fs2-io" % "1.0.4"
libraryDependencies += "co.fs2" %% "fs2-io" % "2.0.0"
// optional reactive streams interop
libraryDependencies += "co.fs2" %% "fs2-reactive-streams" % "1.0.4"
libraryDependencies += "co.fs2" %% "fs2-reactive-streams" % "2.0.0"
// optional experimental library
libraryDependencies += "co.fs2" %% "fs2-experimental" % "1.0.4"
libraryDependencies += "co.fs2" %% "fs2-experimental" % "2.0.0"
```

The previous stable release is 0.10.7. You may want to first
Expand All @@ -65,7 +65,7 @@ libraryDependencies += "co.fs2" %% "fs2-io" % "0.10.7"
The fs2-core library is also supported on Scala.js:

```
libraryDependencies += "co.fs2" %%% "fs2-core" % "1.0.4"
libraryDependencies += "co.fs2" %%% "fs2-core" % "2.0.0"
```

### <a id="about"></a>Example ###
Expand Down

0 comments on commit 82a4f21

Please sign in to comment.