Skip to content

Commit

Permalink
Update nuspec and versioning for SemVer +semver:minor
Browse files Browse the repository at this point in the history
  • Loading branch information
sgryphon committed Sep 16, 2017
1 parent a7ae793 commit 9dbd6b3
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Essential.Diagnostics.Core</id>
<version>2.1.0.0</version>
<version>$version$</version>
<authors>sgryphon</authors>
<owners>sgryphon</owners>
<licenseUrl>https://github.com/sgryphon/essential-diagnostics/blob/master/license.md</licenseUrl>
Expand All @@ -21,7 +21,7 @@
<releaseNotes>
Version 2.1: Addition of structured logging.
</releaseNotes>
<copyright>Copyright © Gryphon Technology Pty Ltd 2017</copyright>
<copyright>$copyright$</copyright>
<tags>Logging Tracing Diagnostics Log Trace TraceListener</tags>
</metadata>
</package>
2 changes: 1 addition & 1 deletion src/Essential.Diagnostics.Core/Version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.906.0
2.1.916.0
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,13 @@
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Content Include="Essential.Diagnostics.Structured.ReadMe.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Include="..\License.txt">
<Link>License.txt</Link>
</None>
<None Include="Essential.Diagnostics.Structured.ReadMe.txt" />
</ItemGroup>
<ItemGroup>
<None Include="Essential.Diagnostics.Structured.nuspec">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="Essential.Diagnostics.Structured.nuspec" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,16 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Essential.Diagnostics.Structured</id>
<version>2.1.0.0</version>
<version>$version$</version>
<authors>sgryphon</authors>
<owners>sgryphon</owners>
<licenseUrl>https://github.com/sgryphon/essential-diagnostics/blob/master/license.md</licenseUrl>
<projectUrl>https://github.com/sgryphon/essential-diagnostics</projectUrl>
<iconUrl>https://raw.githubusercontent.com/sgryphon/essential-diagnostics/master/docs/images/Essential-Diagnostics-64.png</iconUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<summary>
Provides a templated interface and implementation that makes tracing structured data easy via System.Diagnostics, using a fluent interface. Information is traced as StructuredData, with a message template, template values, and additional properties.
</summary>
<description>
Provides a templated interface and implementation that makes tracing structured data easy via System.Diagnostics, using a fluent interface. Information is traced as StructuredData, with a message template, template values, and additional properties.

Expand All @@ -23,10 +26,15 @@
<releaseNotes>
Version 2.1: Addition of structured logging.
</releaseNotes>
<copyright>Copyright © Gryphon Technology Pty Ltd 2017</copyright>
<copyright>$copyright$</copyright>
<tags>Logging Tracing Diagnostics Log Trace TraceListener Structured Semantic</tags>
<dependencies>
<dependency id="Essential.Diagnostics.Core" version="2.1.0.0" />
<dependency id="Essential.Diagnostics.Core" version="2.1.728" />
</dependencies>
</metadata>
<files>
<file src="bin\$configuration$\$id$.pdb" target="lib\net20" />
<file src="$id$.ReadMe.txt" target="\ReadMe.txt" />
<file src="..\License.txt" target="\" />
</files>
</package>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Reflection;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

Expand Down Expand Up @@ -31,6 +31,7 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.1.0.0")]
[assembly: AssemblyFileVersion("2.1.0.0")]
// [assembly: AssemblyVersion("2.2.0.0")]
[assembly: AssemblyVersion("2.2.0.0")]
[assembly: AssemblyFileVersion("2.2.0.0")]
[assembly: AssemblyInformationalVersion("2.2.0-unstable.6+Branch.develop.Sha.57af87434f4c41dbf0d4b71dbf629c11da431247")]

0 comments on commit 9dbd6b3

Please sign in to comment.