Skip to content

Commit

Permalink
Merge pull request #4025 from froth/update-tutorial
Browse files Browse the repository at this point in the history
Removes language:postfixOps from tutorial as it is not used.
  • Loading branch information
djspiewak authored Mar 4, 2024
2 parents 9c9ec63 + b5258be commit 06f7781
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions docs/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,23 +44,21 @@ name := "cats-effect-tutorial"

version := "3.5.3"

scalaVersion := "2.13.6"
scalaVersion := "2.13.13"

libraryDependencies += "org.typelevel" %% "cats-effect" % "3.5.3" withSources() withJavadoc()

scalacOptions ++= Seq(
"-feature",
"-deprecation",
"-unchecked",
"-language:postfixOps"
)
```

Also make sure that you use a recent version of `sbt`, at least `1.4.2`. You can
set the `sbt` version in `project/build.properties` file:
Also make sure that you use a recent version of `sbt`, _e.g._ `1.9.8`. You can set
the `sbt` version in `project/build.properties` file:

```scala
sbt.version=1.4.2
sbt.version=1.9.8
```

Almost all code snippets in this tutorial can be pasted and compiled right in
Expand Down

0 comments on commit 06f7781

Please sign in to comment.