Skip to content

Commit

Permalink
Bump Version for release 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake Moening committed Sep 3, 2019
1 parent b83934f commit 73a67e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion YNAB.SDK/YNAB.SDK.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<PackageDescription>A YNAB client that allows you to interact with the YNAB Rest API easily within a .NET Core application</PackageDescription>
<PackageId>YNAB.SDK</PackageId>
<PackageTags>ynab;api;client;dotnetcore;sdk</PackageTags>
<Version>1.0.3</Version>
<Version>1.0.4</Version>
<Authors>Jake Moening</Authors>
<PackageProjectUrl>https://github.com/jaboc83/ynab-sdk-dotnetcore</PackageProjectUrl>
<TargetFramework>netcoreapp2.2</TargetFramework>
Expand Down
2 changes: 1 addition & 1 deletion scripts/Publish-NugetPackage.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Process
if(!$?) { throw "FAILED TO PACK" }
if ($NuspecFile -eq "")
{
$NuspecFile = (Get-ChildItem ../YNAB.SDK/bin/Release/*.nupkg)[0].FullName
$NuspecFile = (Get-ChildItem ../YNAB.SDK/bin/Release/*.nupkg | Sort-Object -Descending)[0].FullName
}
"`nNUGET PUSH STARTED $(Get-Date)" | Tee-Object -FilePath $logPath -Append
dotnet nuget push $NuspecFile --api-key $NugetAPIKey --source https://api.nuget.org/v3/index.json | Tee-Object -FilePath $logPath -Append
Expand Down

0 comments on commit 73a67e7

Please sign in to comment.