Skip to content

Commit

Permalink
readme, set version to 0.5.6-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
tpolecat committed Sep 6, 2017
1 parent dbd1063 commit c60a819
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 @@ -7,9 +7,9 @@

**tut** is a very simple documentation tool for Scala that reads Markdown files and interprets Scala code in `tut` sheds, allowing you to write documentation that is typechecked and run as part of your build.

The current version is **0.5.4** (changelog [here](CHANGELOG.md), upgrade instructions for 0.5.x series [here](#0.5.x)) which runs on **Scala 2.10**, **2.11**, **2.12**, and **2.13.0-M1**.
The current version is **0.5.5** (changelog [here](CHANGELOG.md), upgrade instructions for 0.5.x series [here](#0.5.x)) which runs on **Scala 2.10**, **2.11**, **2.12**, and **2.13.0-M1**.

:sparkles: Also available is version **0.6.0** which is functionally the same as **0.5.4** but runs on **sbt 1.0** and supports **Scala 2.11**, **2.12**, and **2.13.0-M1**.
:sparkles: Also available is version **0.6.0** which is functionally the same as **0.5.5** but runs on **sbt 1.0** and supports **Scala 2.11**, **2.12**, and **2.13.0-M1**.

Projects using **tut** include [doobie](https://github.com/tpolecat/doobie), [frameless](https://github.com/typelevel/frameless) and [cats](https://github.com/typelevel/cats). If you're using it and would like be added to the list, please submit a PR!

Expand All @@ -20,7 +20,7 @@ Projects using **tut** include [doobie](https://github.com/tpolecat/doobie), [fr
**1**. Add the following to `project/plugins.sbt`:

```scala
addSbtPlugin("org.tpolecat" % "tut-plugin" % "0.5.4")
addSbtPlugin("org.tpolecat" % "tut-plugin" % "0.5.5")
```

**2**. And add the following to `build.sbt`:
Expand Down Expand Up @@ -53,7 +53,7 @@ In case you want to run **tut** without sbt, you can use **coursier** instead.
**2**. Run **tut**:

```
coursier launch -r "https://dl.bintray.com/tpolecat/maven/" org.tpolecat:tut-core_2.11:0.5.4 -- \
coursier launch -r "https://dl.bintray.com/tpolecat/maven/" org.tpolecat:tut-core_2.11:0.5.5 -- \
in out '.*\.md$' -classpath $(coursier fetch -p com.chuusai:shapeless_2.11:2.3.1)
```

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
organization in ThisBuild := "org.tpolecat"

version in ThisBuild := "0.5.5"
version in ThisBuild := "0.5.6-SNAPSHOT"

publishArtifact := false

Expand Down

0 comments on commit c60a819

Please sign in to comment.