diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 1a85b44905f..404eab23691 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -3,6 +3,10 @@ ## 5.13.3-alpha - tbd * tbd. +* ENHANCEMENT: TeamCitySummary, added in ReportGenerator 4.1.3 Fixes #2300 - https://github.com/fsharp/FAKE/pull/2301 +* BUGFIX: `Shell.mv` now has the correct documented behavior, consistent with parameter names - https://github.com/fsharp/FAKE/issues/2293 +* BUGFIX: NuGet Push command syntax. Fixes #2299 - https://github.com/fsharp/FAKE/pull/2304 + ## 5.13.2 - 2019-04-23 diff --git a/src/app/Fake.IO.FileSystem/Shell.fs b/src/app/Fake.IO.FileSystem/Shell.fs index 2722419b586..5041fc8057c 100644 --- a/src/app/Fake.IO.FileSystem/Shell.fs +++ b/src/app/Fake.IO.FileSystem/Shell.fs @@ -646,4 +646,4 @@ module Shell = /// Like "mv" in a shell. Moves/renames a file /// The source /// The destination - let mv src dest = moveFile src dest + let mv src dest = moveFile dest src