Skip to content

Commit

Permalink
Find-packages fixed - fixes #888 #889
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Jun 22, 2015
1 parent a13e863 commit bd8d3d6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 1 addition & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#### 1.16.1 - 22.06.2015
* Tab completion for installed packages in Paket.PowerShell - https://github.com/fsprojects/Paket/pull/892
* BUGFIX: Find-packages did not work - https://github.com/fsprojects/Paket/issues/888 https://github.com/fsprojects/Paket/issues/889
* COSMETICS: Improved the documentation for the commands - https://github.com/fsprojects/Paket/pull/891

#### 1.16.0 - 21.06.2015
Expand Down
4 changes: 1 addition & 3 deletions src/Paket.Core/NuGetV3.fs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,5 @@ let private getPackages(auth, nugetURL, packageNamePrefix, maxResults) = async {
/// Uses the NuGet v3 autocomplete service to retrieve all packages with the given prefix.
let FindPackages(auth, nugetURL, packageNamePrefix, maxResults) =
async {
let! packages = getPackages(auth, nugetURL, packageNamePrefix, maxResults)

return SemVer.SortVersions packages
return! getPackages(auth, nugetURL, packageNamePrefix, maxResults)
}
2 changes: 1 addition & 1 deletion src/Paket/Paket.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
<WarningLevel>3</WarningLevel>
<DocumentationFile>
</DocumentationFile>
<StartArguments>update --hard -f</StartArguments>
<StartArguments>find-packages searchtext fak</StartArguments>
<StartWorkingDirectory>D:\code\paket-dependencies</StartWorkingDirectory>
</PropertyGroup>
<PropertyGroup>
Expand Down

0 comments on commit bd8d3d6

Please sign in to comment.