Merge branch 'v0.6.x'

* v0.6.x:
  Release to sonatype using correct profile name (#102)
This commit is contained in:
Paul Campbell 2019-07-03 18:42:40 +01:00
commit 26b4f6f794
2 changed files with 7 additions and 1 deletions

View file

@ -12,6 +12,12 @@ The format is based on [[https://keepachangelog.com/en/1.0.0/][Keep a Changelog]
- Add a version command-line option (#99)
- Add a batch mode (#85)
* [0.6.1] - 2019-07-03
** Fixed
- Release to sonatype using correct profile name (#102)
* [0.6.0] - 2019-06-30
** Added

View file

@ -1,6 +1,5 @@
inThisBuild(List(
organization := "net.kemitix.thorp",
sonatypeProfileName := "net.kemitix",
homepage := Some(url("https://github.com/kemitix/thorp")),
licenses := List("mit" -> url("https://opensource.org/licenses/MIT")),
developers := List(
@ -14,6 +13,7 @@ inThisBuild(List(
))
val commonSettings = Seq(
sonatypeProfileName := "net.kemitix",
scalaVersion := "2.12.8",
test in assembly := {}
)