From c4c405cbb2cddeb351d5e259684c997698145982 Mon Sep 17 00:00:00 2001 From: Dale Wijnand Date: Thu, 13 Apr 2017 10:30:30 +0100 Subject: [PATCH] Detail removal of commonly used deprecations in MIGRATION.md --- MIGRATION.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/MIGRATION.md b/MIGRATION.md index d25876aed..2fc1160e4 100644 --- a/MIGRATION.md +++ b/MIGRATION.md @@ -17,3 +17,8 @@ Migration notes - `TestResult.Value` is now `TestResult`. - the scripted plugin is cross-versioned now, so you must use %% when depending on it - Removed the methods settingsSets from Project (along with add/setSbtFiles) +- Dropped deprecated InputTask apply method and inputTask DSL method - replace with `Def.inputTask` & `Def.spaceDelimited().parsed` +- Dropped deprecated ProjectReference implicit lifts - replace with `RootProject()`, `RootProject()` or `LocalProject()` +- Dropped deprecated seq DSL method - replace with `Seq` or just enumerate without wrapping +- Dropped deprecated File/Seq[File] setting enrichments - replace with `.value` and `Def.setting` +- Dropped deprecated SubProcess apply overload - replace with `SubProcess(ForkOptions(runJVMOptions = ..))`