From bb9457fb7a03499a12a5303d1bed260422879431 Mon Sep 17 00:00:00 2001 From: softprops Date: Thu, 7 May 2015 21:31:48 -0400 Subject: [PATCH] mimic previous configuration --- build.sbt | 7 ++++--- notes/0.3.0.markdown | 9 +++++++++ 2 files changed, 13 insertions(+), 3 deletions(-) create mode 100644 notes/0.3.0.markdown diff --git a/build.sbt b/build.sbt index 10be005..2ea2775 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ organization := "me.lessis" name := "bintray-sbt" -version := "0.3.0-SNAPSHOT" +version := "0.3.0" description := "package publisher for bintray.com" homepage := Some(url(s"https://github.com/softprops/${name.value}#readme")) sbtPlugin := true @@ -26,5 +26,6 @@ pomExtra := ( ) lsSettings -externalResolvers in LsKeys.lsync := (resolvers in bintray.Keys.bintray).value -bintraySettings +externalResolvers in LsKeys.lsync := (resolvers in bintray).value +bintrayRepository := "sbt-plugin-releases" +bintrayOrganization := Some("sbt") diff --git a/notes/0.3.0.markdown b/notes/0.3.0.markdown new file mode 100644 index 0000000..6c34b62 --- /dev/null +++ b/notes/0.3.0.markdown @@ -0,0 +1,9 @@ +## changes + +* auto plugins friendly. this plugin is now automatically enabled if it is added in plugins.sbt, no need to reference bintraySettings +* auto-imported keys. Keys no longer need refered to under the `bintray.Keys` namespace in your custom configuration +* all keys are typically prefixed with `bintray` now to be more inline with current sbt plugin interface trends +* `bintrayOrganization` now defaults to the name associated with your bintray credentials, including in the sbtPlugin case +* `bintrayRepository` now defaults to sbt-plugins, not sbt-plugin-releases to be more inline with the [sbt docs](http://www.scala-sbt.org/0.13/docs/Bintray-For-Plugins.html) + +See the [readme](https://github.com/softprops/bintray-sbt#readme) for more details. This release included many changes to how this plugin works, hopefully for the better. If you find issues please [report them](https://github.com/softprops/bintray-sbt/issues/new)