diff --git a/main/src/main/scala/sbt/CommandStrings.scala b/main/src/main/scala/sbt/CommandStrings.scala index e67697184..cb21d3053 100644 --- a/main/src/main/scala/sbt/CommandStrings.scala +++ b/main/src/main/scala/sbt/CommandStrings.scala @@ -124,6 +124,12 @@ $ShowCommand |$InspectCommand definitions | | Displays the scopes in which `key` is defined. + | + |$InspectCommand actual + | + | Displays the actual dependencies used by `key`. + | This is useful because delegation means that a dependency can come from a scope other than the requested one. + | Using `inspect actual` will show exactly which scope is providing a value for a setting. """.stripMargin.trim val SetCommand = "set" diff --git a/notes/0.13.9/help-inspect-actual.markdown b/notes/0.13.9/help-inspect-actual.markdown new file mode 100644 index 000000000..fbfef8ebe --- /dev/null +++ b/notes/0.13.9/help-inspect-actual.markdown @@ -0,0 +1,12 @@ + + [@dwijnand]: http://github.com/dwijnand + [1651]: https://github.com/sbt/sbt/issues/1651 + [1990]: https://github.com/sbt/sbt/pull/1990 + +### Fixes with compatibility implications + +### Improvements + +- Add help message for `inspect actual`. [#1651][1651]/[#1990][1990] by [@dwijnand][@dwijnand] + +### Bug fixes