Skip to content

Commit

Permalink
Update version numbers and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mkiwala committed Jun 15, 2023
1 parent 0906743 commit 5231d25
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

## [Changes since last release]

## [0.9.0] - 2023-06-15
### Added
#Changed
- Updated Scala minor versions: 2.12.10 -> 2.12.18 and 2.13.1 -> 2.13.11
- Updated ScalaJS version 0.6.32 -> 1.8.0
- Updated miscellaneous plugin and dependency versions
### Fixed
- Warnings in Scala 2.12 build, and enabled fatal warnings

## [0.6.3] - 2018-12-13
### Added
#Changed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Documentation for EvilPlot is available [here](https://cibotech.github.io/evilpl
## Getting Started
Add EvilPlot to your build with:
```scala
libraryDependencies += "io.github.cibotech" %% "evilplot" % "0.8.1" // Use %%% instead of %% if you're using ScalaJS
libraryDependencies += "io.github.cibotech" %% "evilplot" % "0.9.0" // Use %%% instead of %% if you're using ScalaJS
```
Take a look at the full [getting started guide](https://cibotech.github.io/evilplot/getting-started.html). EvilPlot is published for Scala 2.12 and Scala 2.13.

Expand Down
4 changes: 2 additions & 2 deletions docs/src/main/tut/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ position: 2

To get going with EvilPlot, you'll need to add it to your build. EvilPlot is published for Scala 2.12 and 2.13.
```scala
libraryDependencies += "io.github.cibotech" %% "evilplot" % "0.8.1" // Use %%% instead of %% if you're using ScalaJS
libraryDependencies += "io.github.cibotech" %% "evilplot" % "0.9.0" // Use %%% instead of %% if you're using ScalaJS
```

Throughout the getting started guide, we'll assume you're working either in a Scala REPL or the [Ammonite](http://ammonite.io). We publish an additional
utility to make using EvilPlot from the REPL easier. To import it, add:

```scala
libraryDependencies += "io.github.cibotech" %% "evilplot-repl" % "0.8.1" // Use %%% instead of %% if you're using ScalaJS
libraryDependencies += "io.github.cibotech" %% "evilplot-repl" % "0.9.0" // Use %%% instead of %% if you're using ScalaJS
```
to your build.

Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ThisBuild / version := "0.8.2-SNAPSHOT"
ThisBuild / version := "0.9.0-SNAPSHOT"

0 comments on commit 5231d25

Please sign in to comment.