Release to sonatype using correct profile name (#102)

* [changelog] updated

* [sbt] Specify sonatypeProfileName in commonSettings

This prevents the value being overridded by the `organization` value
from `inThisBuild`.
This commit is contained in:
Paul Campbell 2019-07-03 13:50:28 +01:00 committed by GitHub
parent 8120fca0ae
commit 8585023c3e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View file

@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [[https://keepachangelog.com/en/1.0.0/][Keep a Changelog]], and this project adheres to
[[https://semver.org/spec/v2.0.0.html][Semantic Versioning]].
* [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 := {}
)