Skip to content

Commit

Permalink
Merge pull request #156 from auth0/fix/deps
Browse files Browse the repository at this point in the history
Fixed nuspec dependency versions
  • Loading branch information
Steve Hobbs authored Jul 9, 2020
2 parents 6f15f25 + 43fb6ac commit 5648afd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
9 changes: 6 additions & 3 deletions nuget/Auth0.OidcClient.WPF.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package>
<metadata>
<id>Auth0.OidcClient.WPF</id>
<version>3.1.6</version>
<version>3.1.7</version>
<authors>Auth0</authors>
<owners>Auth0</owners>
<license type="expression">Apache-2.0</license>
Expand All @@ -12,6 +12,9 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Auth0 OIDC Client for WPF apps</description>
<releaseNotes>
Version 3.1.7
- Fixed dependency version in nuspec file for Microsoft.Toolkit.Wpf.UI.Controls.WebView

Version 3.1.6
- Bumped Microsoft.Toolkit.Wpf.UI.Controls.WebView to 6.1.1

Expand Down Expand Up @@ -82,11 +85,11 @@
<dependencies>
<group targetFramework="net462">
<dependency id="Auth0.OidcClient.Core" version="3.1.2" />
<dependency id="Microsoft.Toolkit.Wpf.UI.Controls.WebView" version="6.0.0"/>
<dependency id="Microsoft.Toolkit.Wpf.UI.Controls.WebView" version="6.1.1"/>
</group>
<group targetFramework="netcoreapp3.1">
<dependency id="Auth0.OidcClient.Core" version="3.1.2" />
<dependency id="Microsoft.Toolkit.Wpf.UI.Controls.WebView" version="6.0.0"/>
<dependency id="Microsoft.Toolkit.Wpf.UI.Controls.WebView" version="6.1.1"/>
</group>
</dependencies>
</metadata>
Expand Down
4 changes: 2 additions & 2 deletions nuget/Auth0.OidcClient.WinForms.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,11 @@
<dependencies>
<group targetFramework="net462">
<dependency id="Auth0.OidcClient.Core" version="3.1.2" />
<dependency id="Microsoft.Toolkit.Forms.UI.Controls.WebView" version="6.0.0"/>
<dependency id="Microsoft.Toolkit.Forms.UI.Controls.WebView" version="6.1.1"/>
</group>
<group targetFramework="netcoreapp3.1">
<dependency id="Auth0.OidcClient.Core" version="3.1.2" />
<dependency id="Microsoft.Toolkit.Forms.UI.Controls.WebView" version="6.0.0"/>
<dependency id="Microsoft.Toolkit.Forms.UI.Controls.WebView" version="6.1.1"/>
</group>
</dependencies>
</metadata>
Expand Down
4 changes: 2 additions & 2 deletions src/Auth0.OidcClient.WPF/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

[assembly: AssemblyTitle("Auth0.OidcClient.WPF")]
[assembly: AssemblyProduct("Auth0.OidcClient")]
[assembly: AssemblyVersion("3.1.6")]
[assembly: AssemblyFileVersion("3.1.6")]
[assembly: AssemblyVersion("3.1.7")]
[assembly: AssemblyFileVersion("3.1.7")]
[assembly: ComVisible(false)]

[assembly: ThemeInfo(ResourceDictionaryLocation.None, ResourceDictionaryLocation.SourceAssembly)]

0 comments on commit 5648afd

Please sign in to comment.