From c15f471af123f4c5f103c0c1cc0041cbf26c88e4 Mon Sep 17 00:00:00 2001 From: Lucas Satabin Date: Sat, 8 Feb 2020 09:47:12 +0100 Subject: [PATCH] Release 4.0.2 --- README.markdown | 4 ++-- build.sbt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.markdown b/README.markdown index 43e7794..6c55886 100644 --- a/README.markdown +++ b/README.markdown @@ -29,7 +29,7 @@ Getting Started This library is published in the [Maven][7] [Central Repository][8]. You can add it to your sbt project by putting this line into your build description: ```scala -libraryDependencies += "org.gnieh" %% f"diffson-$jsonLib" % "4.0.1" +libraryDependencies += "org.gnieh" %% f"diffson-$jsonLib" % "4.0.2" ``` where `jsonLib` is either: @@ -42,7 +42,7 @@ These versions are built for Scala 2.12 and 2.13. Scala.JS is also supported for both Scala 2.12 and 2.13. To use it, add this dependency to your build file: ```scala -libraryDependencies += "org.gnieh" %%% f"diffson-$jsonLib" % "4.0.1" +libraryDependencies += "org.gnieh" %%% f"diffson-$jsonLib" % "4.0.2" ``` Json Library diff --git a/build.sbt b/build.sbt index 5ef6850..d136254 100644 --- a/build.sbt +++ b/build.sbt @@ -7,7 +7,7 @@ val scala213 = "2.13.1" lazy val commonSettings = Seq( organization := "org.gnieh", scalaVersion := scala213, - version := "4.0.1", + version := "4.0.2", description := "Json diff/patch library", licenses += ("The Apache Software License, Version 2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt")), homepage := Some(url("https://github.com/gnieh/diffson")),