diff --git a/CHANGELOG.org b/CHANGELOG.org index efb9d5d..88fdf54 100644 --- a/CHANGELOG.org +++ b/CHANGELOG.org @@ -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 diff --git a/build.sbt b/build.sbt index 78a0215..566dfac 100644 --- a/build.sbt +++ b/build.sbt @@ -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 := {} )