From ad3b90bed87090e7add70c1537cb4d11a2d446f0 Mon Sep 17 00:00:00 2001 From: Dale Wijnand Date: Fri, 28 Oct 2016 14:54:41 +0100 Subject: [PATCH] Add the debian changelog, for 0.13.13 release (#123) --- build.sbt | 1 + debian/changelog | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 debian/changelog diff --git a/build.sbt b/build.sbt index 9148dc361..407138e14 100644 --- a/build.sbt +++ b/build.sbt @@ -68,6 +68,7 @@ val root = (project in file(".")). (bd / "debian/changelog") -> "/usr/share/doc/sbt/changelog.gz" ) withUser "root" withGroup "root" withPerms "0644" gzipped) asDocs() }, + debianChangelog in Debian := Some(file("debian/changelog")) // RPM SPECIFIC name in Rpm := "sbt", diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 000000000..a7f55ff4a --- /dev/null +++ b/debian/changelog @@ -0,0 +1,21 @@ +sbt (0.13.13) + + * The `new` command, which helps creating new build definitions. + This is extensible via `templateResolverInfos` setting. + sbt 0.13.13 will ship with Giter8 template resolver out of the box. + #2705 by @eed3si9n + * Auto plugins can add synthetic subprojects. #2717 by @eed3si9n + * The no-longer-documented sbt 0.12 DSL `<<=`, `<+=`, and `<++=` + operators and tuple enrichment are now marked deprecated. + (These are removed in 1.0.x branch.) @eed3si9n and @dwijnand + * The `.value` method is deprecated for input tasks since `.evaluated` + is normally what's needed. + (Also removed in 1.0.x branch) #2709 by @eed3si9n + * sbt 0.13.13 will display deprecation warning for build.sbt. + #2784 by @eed3si9n + * Renames the early command `--` that was added in 0.13.1 to + `early()`. `--error` will work, but we encourage you to + migrate to single hyphen version: `-error`, `-warn`, `-info`, and + `-debug`. #2742 by @eed3si9n + + -- Dale Wijnand