Updated version information to v0.2.1

This commit is contained in:
Kevin Thompson
2018-09-23 10:44:43 -04:00
parent 5c63105acf
commit 6bf95f46ee
2 changed files with 5 additions and 5 deletions

View File

@@ -2,7 +2,7 @@
<package > <package >
<metadata> <metadata>
<id>NSspi</id> <id>NSspi</id>
<version>0.2.0.0</version> <version>0.2.1.0</version>
<authors>Kevin Thompson</authors> <authors>Kevin Thompson</authors>
<owners>Kevin Thompson</owners> <owners>Kevin Thompson</owners>
<projectUrl>https://github.com/antiduh/nsspi</projectUrl> <projectUrl>https://github.com/antiduh/nsspi</projectUrl>
@@ -13,6 +13,6 @@
</description> </description>
<language>C#</language> <language>C#</language>
<releaseNotes>Adds support for username/password credentials, but introduces a minor change in the interface that breaks existing code.</releaseNotes> <releaseNotes>Adds support for username/password credentials, but introduces a minor change in the interface that breaks existing code.</releaseNotes>
<copyright>Copyright 2017</copyright> <copyright>Copyright 2018</copyright>
</metadata> </metadata>
</package> </package>

View File

@@ -9,7 +9,7 @@ using System.Runtime.InteropServices;
[assembly: AssemblyConfiguration( "" )] [assembly: AssemblyConfiguration( "" )]
[assembly: AssemblyCompany( "Kevin Thompson" )] [assembly: AssemblyCompany( "Kevin Thompson" )]
[assembly: AssemblyProduct( "NSspi" )] [assembly: AssemblyProduct( "NSspi" )]
[assembly: AssemblyCopyright( "Copyright © Kevin Thompson 2017" )] [assembly: AssemblyCopyright( "Copyright © Kevin Thompson 2018" )]
[assembly: AssemblyTrademark( "" )] [assembly: AssemblyTrademark( "" )]
[assembly: AssemblyCulture( "" )] [assembly: AssemblyCulture( "" )]
@@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion( "0.2.0.0" )] [assembly: AssemblyVersion( "0.2.1.0" )]
[assembly: AssemblyFileVersion( "0.2.0.0" )] [assembly: AssemblyFileVersion( "0.2.1.0" )]