From 8757a4c6acbe3bfa2202ad8947344af9c90659da Mon Sep 17 00:00:00 2001 From: Saniya Tech Date: Tue, 31 Oct 2017 17:09:20 -0400 Subject: [PATCH] Removes reference to version 0.14.0 from a warning message --- .../src/main/scala/sbt/BasicCommandStrings.scala | 2 +- notes/1.1.0/remove-ref-to-older-vers.md | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 notes/1.1.0/remove-ref-to-older-vers.md diff --git a/main-command/src/main/scala/sbt/BasicCommandStrings.scala b/main-command/src/main/scala/sbt/BasicCommandStrings.scala index d6b8761dc..abc2bc9c1 100644 --- a/main-command/src/main/scala/sbt/BasicCommandStrings.scala +++ b/main-command/src/main/scala/sbt/BasicCommandStrings.scala @@ -194,7 +194,7 @@ $AliasCommand name= deprecatedAlias(ClearOnFailure, BasicCommandStrings.ClearOnFailure) def FailureWallDeprecated = deprecatedAlias(FailureWall, BasicCommandStrings.FailureWall) private[this] def deprecatedAlias(oldName: String, newName: String): String = - s"The `$oldName` command is deprecated in favor of `$newName` and will be removed in 0.14.0" + s"The `$oldName` command is deprecated in favor of `$newName` and will be removed in a later version" } def FailureWall = "resumeFromFailure" diff --git a/notes/1.1.0/remove-ref-to-older-vers.md b/notes/1.1.0/remove-ref-to-older-vers.md new file mode 100644 index 000000000..5b0ecf1b0 --- /dev/null +++ b/notes/1.1.0/remove-ref-to-older-vers.md @@ -0,0 +1,11 @@ +[@saniyatech]: https://github.com/saniyatech + +[#3693]: https://github.com/sbt/sbt/issues/3693 + +### Bug fixes + +- Removes reference to version 0.14.0 from a warning message. [#3693][] by [@saniyatech][] + +### Improvements + +### Fixes with compatibility implications