diff --git a/README.md b/README.md index 85e3536..4c4cf27 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,10 @@ [![Build Status](https://travis-ci.org/jcazevedo/moultingyaml.svg?branch=master)](https://travis-ci.org/jcazevedo/moultingyaml) [![Coverage Status](https://coveralls.io/repos/github/jcazevedo/moultingyaml/badge.svg?branch=master)](https://coveralls.io/github/jcazevedo/moultingyaml?branch=master) [![License](https://img.shields.io/dub/l/vibe-d.svg)](https://raw.githubusercontent.com/jcazevedo/moultingyaml/master/LICENSE.md) + [![Maven Central](https://img.shields.io/maven-central/v/net.jcazevedo/moultingyaml_2.10.svg?label=latest%20release%20for%202.10)](https://maven-badges.herokuapp.com/maven-central/net.jcazevedo/moultingyaml_2.10) [![Maven Central](https://img.shields.io/maven-central/v/net.jcazevedo/moultingyaml_2.11.svg?label=latest%20release%20for%202.11)](https://maven-badges.herokuapp.com/maven-central/net.jcazevedo/moultingyaml_2.11) +[![Maven Central](https://img.shields.io/maven-central/v/net.jcazevedo/moultingyaml_2.12.svg?label=latest%20release%20for%202.12)](https://maven-badges.herokuapp.com/maven-central/net.jcazevedo/moultingyaml_2.12) MoultingYAML is a Scala wrapper for [SnakeYAML][snakeyaml] based on [spray-json][spray-json]. @@ -16,13 +18,13 @@ serialization and deserialization of custom objects. ## Installation -MoultingYAML's latest release is `0.3.0` and is built against Scala 2.11.8 and 2.10.6. +MoultingYAML's latest release is `0.3.1` and is built against Scala 2.12.0, 2.11.8 and 2.10.6. To use it in an existing SBT project, add the following dependency to your `build.sbt`: ```scala -libraryDependencies += "net.jcazevedo" %% "moultingyaml" % "0.3.0" +libraryDependencies += "net.jcazevedo" %% "moultingyaml" % "0.3.1" ``` ## Usage diff --git a/build.sbt b/build.sbt index fcd73eb..bcdb599 100644 --- a/build.sbt +++ b/build.sbt @@ -4,7 +4,7 @@ name := "moultingyaml" organization := "net.jcazevedo" -version := "1.0.0-SNAPSHOT" +version := "0.3.1" scalaVersion := "2.12.0"