This repository has been archived by the owner on Feb 28, 2021. It is now read-only.
Releases: sbt/sbt-bintray
Releases · sbt/sbt-bintray
0.6.1
0.6.0
sbt-bintray 0.6.0 is published to sbt 1.x, and sbt 0.13 cross building is dropped.
- Updates to Bintry 0.6.0, which updates to dispatch-json4s-native 1.2.0.
- Fixes URL for BintrayMavenResolver - 0862c76
sbt-bintray-remote-cache 0.6.0
There's now a spin-off plugin called sbt-bintray-remote-cache 0.6.0 that sets up Bintray as a remote caching backend.
See https://github.com/sbt/sbt-bintray/blob/master/REMOTE_CACHE.md and accompanying blog post https://eed3si9n.com/remote-caching-sbt-builds-with-bintray
0.5.6
0.5.5
0.5.4
Changes in this release:
- new task
bintraySyncSonatypeStaging
syncs artifacts from Bintray to Sonatype staging repo and leaves the staging repo open. Useful for smoke testing staged artifacts before closing the repo and sending artifacts to Maven Central. Thanks to @lukaszwawrzyk (#146) - fixed thread leak in the way Http client was being used by @retronym (#144)
- new setting
skip in publish
to disable project publishing by @eed3si9n (#93)
0.5.3
- Support publishing sbt plugins in "maven style" by using Bintray's generic content API. #72/#125/ sbt/sbt#3410/#141 by @jvican and @bogdanromanx
0.5.2
0.5.1
0.5.0
Changes with compatibility implications
- Removes prompting the user for Bintray credentials, logging an informative warning instead. #119 by @jastice
Features
- Adds support for defining Bintray credentials from the
bintray.user
/bintray.pass
system properties or theBINTRAY_USER
/BINTRAY_PASS
enviroment variables. #113 by @2m - Adds support for defining PGP passphrase from the
pgp.pass
system property orPGP_PASS
environment variable. #102 by @jvican - Cross-built for sbt 1.0.0-M6 (back published for 0.4.0). #110 by @eed3si9n
Fixes
- Fix incorrect usage of settings logger (
sLog
) in tasks. #85/#111/#116 by @oliverlockwood and @travissarles