Skip to content

Commit

Permalink
Add developer information
Browse files Browse the repository at this point in the history
  • Loading branch information
steinybot committed Mar 7, 2021
1 parent 9092e93 commit 6534350
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,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.1.11")
addSbtPlugin("nz.co.bottech" % "sbt-scala2plantuml" % "0.1.12")
```

## CLI
Expand All @@ -52,7 +52,7 @@ cs install --channel https://git.io/Jqv1i scala2plantuml
### Usage

```text
Scala2PlantUML version 0.1.11
Scala2PlantUML version 0.1.12
Usage: scala2plantuml [options] symbol
Scala2PlantUML generates PlantUML Class Diagrams from Scala SemanticDB files.
Expand Down
9 changes: 8 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,13 @@ inThisBuild(
crossScalaVersions := supportedScalaVersions,
dependencyCheckAssemblyAnalyzerEnabled := Some(false),
description := "Scala2PlantUML generates PlantUML diagrams from Scala code.",
// We have to have this otherwise the release fails.
developers += Developer(
"steinybot",
"Jason Pickens",
"[email protected]",
url("https://github.com/steinybot")
),
// TODO: Add this when sbt 1.5.0 is released.
// evictionErrorLevel := Level.Error,
homepage := Some(url("https://github.com/BotTech/scala2plantuml")),
Expand Down Expand Up @@ -90,7 +97,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,
versionPolicyFirstVersion := Some("0.1.11"),
versionPolicyFirstVersion := Some("0.1.12"),
versionPolicyIntention := Compatibility.BinaryAndSourceCompatible,
versionScheme := Some("early-semver")
)
Expand Down

0 comments on commit 6534350

Please sign in to comment.