Skip to content

Commit

Permalink
0.11.2 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
noelwelsh committed Jul 24, 2022
1 parent 2dd77f5 commit 2a4dc0c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.11.2 24-Jul-2022

- Add "constructors" to algebras. Described in WIP documentation. This allows
construction of `Picture` without going via syntax, and in turn without
requiring explicit types.


## 0.11.1 2-Jun-2022

- Add `originAt` for even more layout flexibility
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ Distributed under the [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0.tx

## Using Doodle

The current release is **0.11.1** and is on the `master` branch.
The current release is **0.11.2** and is on the `master` branch.

To use doodle add the following to your `build.sbt`:

~~~ scala
// Doodle is currently published for Scala 2.13 and Scala 3
libraryDependencies += "org.creativescala" %% "doodle" % "0.11.1"
libraryDependencies += "org.creativescala" %% "doodle" % "0.11.2"
~~~

Alternatively you can `git clone` or download Doodle and use it directly from the SBT console. See the instructions below.
Expand Down Expand Up @@ -90,7 +90,7 @@ These are notes for developers.
To generate the documentation run the `documentation` task in SBT *without* changing to any project. If you do the task just seems to disappear. I have no idea why. The output will be in `docs/target/docs`. Copy this to the website and upload.
If you run out of metaspace you can punch SBT in the face. Alternatively run just the documentation task (i.e. `sbt documentation`) and it seems to be happier.
If you run out of metaspace you can run just the documentation task (i.e. `sbt documentation`) and it seems to be happier.
### Publishing
Expand Down
2 changes: 1 addition & 1 deletion publish.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ThisBuild / name := "doodle"
ThisBuild / organization := "org.creativescala"
ThisBuild / organizationName := "Noel Welsh"
ThisBuild / organizationHomepage := Some(url("http://creativescala.org/"))
ThisBuild / version := "0.11.1"
ThisBuild / version := "0.11.2"
ThisBuild / versionScheme := Some("early-semver")
ThisBuild / isSnapshot := false

Expand Down

0 comments on commit 2a4dc0c

Please sign in to comment.