From b478eda58e7d677a401265ce5bc702df325e1170 Mon Sep 17 00:00:00 2001 From: Jason Pickens Date: Wed, 10 Mar 2021 09:43:03 +1300 Subject: [PATCH] Prepare v0.3.0 --- README.md | 6 +++--- build.sbt | 4 +--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index f27f868..20b4e7c 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ instructions below. ```shell scala2plantuml \ - --url 'https://repo1.maven.org/maven2/nz/co/bottech/scala2plantuml-example_2.13/0.2.0/scala2plantuml-example_2.13-0.2.0.jar'\ + --url 'https://repo1.maven.org/maven2/nz/co/bottech/scala2plantuml-example_2.13/0.3.0/scala2plantuml-example_2.13-0.3.0.jar'\ --project example \ "nz/co/bottech/scala2plantuml/example/Main." ``` @@ -71,7 +71,7 @@ For most use cases you should add Scala2PlantUML as a global plugin since your b Create `~/.sbt/1.0/plugins/scala2PlantUML.sbt` containing: ```text -addSbtPlugin("nz.co.bottech" % "sbt-scala2plantuml" % "0.2.0") +addSbtPlugin("nz.co.bottech" % "sbt-scala2plantuml" % "0.3.0") ``` ### Generate the Diagram @@ -106,7 +106,7 @@ scala2plantuml --help ``` ```text -Scala2PlantUML version 0.2.0 +Scala2PlantUML version 0.3.0 Usage: scala2plantuml [options] symbol Scala2PlantUML generates PlantUML Class Diagrams from Scala SemanticDB files. diff --git a/build.sbt b/build.sbt index f1be9d9..2398a5f 100644 --- a/build.sbt +++ b/build.sbt @@ -84,9 +84,7 @@ inThisBuild( // This needs to be set otherwise the GitHub workflow plugin gets confused about which // version to use for the publish job. scalaVersion := scala212, - // TODO: Revert this after releasing 0.3.0. - //versionPolicyIntention := Compatibility.BinaryAndSourceCompatible, - versionPolicyIntention := Compatibility.None, + versionPolicyIntention := Compatibility.BinaryAndSourceCompatible, versionScheme := Some("early-semver") ) )