From 7aefd0781c74e06d0331aa9a1dce29ebca176383 Mon Sep 17 00:00:00 2001 From: Artem Kostiuk Date: Mon, 23 Sep 2019 09:11:39 +0300 Subject: [PATCH] Upgrade AMF to 3.5.1 --- build.sbt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index 79e96cf..c189c61 100644 --- a/build.sbt +++ b/build.sbt @@ -5,7 +5,7 @@ val ivyLocal = Resolver.file("ivy", file(Path.userHome.absolutePath + "/.ivy2/lo name := "webapi-parser" -ThisBuild / version := "0.3.0" +ThisBuild / version := "0.3.1" publish := {} @@ -27,8 +27,8 @@ val settings = Common.settings ++ Common.publish ++ Seq( credentials ++= Common.credentials(), libraryDependencies ++= Seq( "org.scalatest" %%% "scalatest" % "3.0.5" % "test", - "com.github.amlorg" %%% "amf-webapi" % "3.5.0", - "com.github.amlorg" %%% "amf-validation" % "3.5.0" + "com.github.amlorg" %%% "amf-webapi" % "3.5.1", + "com.github.amlorg" %%% "amf-validation" % "3.5.1" ) )