Skip to content

Commit

Permalink
update versions and dates
Browse files Browse the repository at this point in the history
at the open source spree in Copenhagen
  • Loading branch information
SethTisue committed May 31, 2017
1 parent e0e520d commit 68e7fee
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
language: scala

scala:
- 2.11.7
- 2.12.2
12 changes: 5 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,25 @@
# Doodle: Compositional Graphics

Copyright 2015 [Underscore](http://underscore.io).
Copyright 2015-2017 [Underscore](http://underscore.io).

A Scala library for compositional vector graphics,
with a native back-end via Swing and Java2D,
and an HTML SVG backend via [Scala.js](http://www.scala-js.org/).
with a desktop back-end via Swing and Java2D,
and an HTML SVG back-end via [Scala.js](http://www.scala-js.org/).

Distributed under the [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) license.

[![Build Status](https://travis-ci.org/underscoreio/doodle.svg?branch=develop)](https://travis-ci.org/underscoreio/doodle)
[![Join the chat at https://gitter.im/underscoreio/doodle](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/underscoreio/doodle?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

# Using Doodle
# Using Doodle

You can use Doodle in your own project by importing the JARs published to our [Bintray repository][bintray-training]. The current release is **`0.7.0`**. To use it add the following to your `build.sbt`:

[bintray-training]: https://bintray.com/underscoreio/training/doodle

~~~ scala
scalaVersion := "2.11.8" // Doodle is compatible with Scala 2.11 only

scalaVersion := "2.11.11" // Doodle is compatible with Scala 2.11 only
resolvers += Resolver.bintrayRepo("underscoreio", "training")

libraryDependencies += "underscoreio" %% "doodle" % "0.7.0"
~~~

Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ version in ThisBuild := "0.7.0"

val catsVersion = "0.9.0"

scalaVersion in ThisBuild := "2.12.1"
scalaVersion in ThisBuild := "2.12.2"

lazy val doodle = crossProject.
crossType(DoodleCrossType).
settings(
name := "doodle",
organization := "underscoreio",
scalaVersion := "2.12.1",
scalaVersion := "2.12.2",
scalaOrganization := "org.typelevel",
scalacOptions ++= Seq("-feature", "-Xfatal-warnings", "-deprecation", "-unchecked", "-Ywarn-unused-import", "-Ypartial-unification"),
scalacOptions in (Compile, console) := Seq("-feature", "-Xfatal-warnings", "-deprecation", "-unchecked", "-Ypartial-unification"),
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.13-RC2
sbt.version=0.13.15

0 comments on commit 68e7fee

Please sign in to comment.