Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update versions and dates #51

Merged
merged 2 commits into from
May 31, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
jdk: oraclejdk8
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
5 changes: 2 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +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",
scalaOrganization := "org.typelevel",
scalaVersion := "2.12.2",
scalacOptions ++= Seq("-feature", "-Xfatal-warnings", "-deprecation", "-unchecked", "-Ywarn-unused-import", "-Ypartial-unification"),
scalacOptions in (Compile, console) := Seq("-feature", "-Xfatal-warnings", "-deprecation", "-unchecked", "-Ypartial-unification"),
licenses += ("Apache-2.0", url("http://apache.org/licenses/LICENSE-2.0")),
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