Skip to content

Commit d787c77

Browse files
committed
Version 1.1.1
1 parent e1365b2 commit d787c77

File tree

3 files changed

+30
-6
lines changed

3 files changed

+30
-6
lines changed

Numbers.nuspec

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<package
2-
><metadata><version>1.1.0</version><id>PeterO.Numbers</id><requireLicenseAcceptance>false</requireLicenseAcceptance><releaseNotes>
2+
><metadata><version>1.1.1</version><id>PeterO.Numbers</id><requireLicenseAcceptance>false</requireLicenseAcceptance><releaseNotes>
3+
Version 1.1.1
4+
5+
- Numbers .NET 2.0 assembly had wrong version number
6+
7+
Version 1.1.1
8+
9+
- Added build targeting .NET Framework 2.0
10+
11+
312
Version 1.0.2
413

514
- Really strong-name sign the assembly, which (probably) was inadvertently delay-signed in version 1.0.

Numbers/Numbers.csproj

+11-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard1.0</TargetFramework>
55
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
6-
<Version>1.1.0</Version>
6+
<Version>1.1.1</Version>
77
<Owners>Peter Occil</Owners>
88
<Description>A C# library that supports arbitrary-precision binary and decimal floating-point numbers and rational numbers with arbitrary-precision components, and supports arithmetic with these numbers.</Description>
99
<Copyright>Written by Peter O. in 2017. Any copyright is released to the Public Domain.</Copyright>
@@ -14,6 +14,15 @@
1414
<PackageLicenseUrl>http://creativecommons.org/publicdomain/zero/1.0/</PackageLicenseUrl>
1515
<PackageProjectUrl>https://github.com/peteroupc/Numbers</PackageProjectUrl>
1616
<PackageReleaseNotes>
17+
Version 1.1.1
18+
19+
- Numbers .NET 2.0 assembly had wrong version number
20+
21+
Version 1.1.1
22+
23+
- Added build targeting .NET Framework 2.0
24+
25+
1726
Version 1.0.2
1827

1928
- Really strong-name sign the assembly, which (probably) was inadvertently delay-signed in version 1.0.
@@ -64,4 +73,4 @@ Version 0.5
6473
</CustomCommands>
6574
</CustomCommands>
6675
</PropertyGroup>
67-
</Project>
76+
</Project>

Numbers20/Properties/AssemblyInfo.cs

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
using System.Reflection;
2-
using System.Runtime.CompilerServices;
3-
1+
using System.Reflection;
42
[assembly:System.CLSCompliant(true)]
3+
[assembly:AssemblyVersion("1.1.1")]
4+
[assembly:AssemblyFileVersion("1.1.1.0")]
5+
[assembly:AssemblyInformationalVersion("1.1.1.0")]
6+
[assembly:AssemblyProduct("Arbitrary-Precision Number Library")]
7+
[assembly:AssemblyTitle("Arbitrary-Precision Number Library")]
8+
[assembly:AssemblyDescription("A C# library that supports arbitrary-precision binary and decimal floating-point numbers and rational numbers with arbitrary-precision components, and supports arithmetic with these numbers.")]
9+
[assembly:AssemblyCompany("Peter Occil")]
10+
[assembly:AssemblyCopyright("http://creativecommons.org/publicdomain/zero/1.0/")]

0 commit comments

Comments
 (0)