Skip to content

Commit 918c6a2

Browse files
committed
release 2.3.0
1 parent fba9924 commit 918c6a2

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed
-208 KB
Binary file not shown.
1.47 MB
Binary file not shown.

src/LinqStatistics.Packager/Package.nuspec

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package >
33
<metadata>
44
<id>LinqStatistics</id>
5-
<version>2.2.1</version>
5+
<version>2.3.0</version>
66
<title>LinqStatistics</title>
77
<authors>dkackman</authors>
88
<owners></owners>
@@ -25,6 +25,10 @@
2525
- Include R squared while calculating Least Squares
2626
2.2.1
2727
- Add NetStandard library
28+
2.2.2
29+
- Fixed StandardDeviationP bug https://github.com/dkackman/LinqStatistics/issues/10
30+
- Speed up CountEach by not ordering
31+
- Add overload to CountEach to take selector and comparer
2832
</releaseNotes>
2933
<summary>
3034
Extensions that add simple statistical methods
@@ -34,8 +38,11 @@
3438
<iconUrl>https://raw.githubusercontent.com/dkackman/DynamicRestProxy/master/nugeticon.png</iconUrl>
3539
<requireLicenseAcceptance>false</requireLicenseAcceptance>
3640
<licenseUrl>http://opensource.org/licenses/Apache-2.0</licenseUrl>
37-
<copyright>Copyright Don Kackman 2013</copyright>
41+
<copyright>Copyright Don Kackman</copyright>
3842
<dependencies>
43+
<group targetFramework="portable-net45+win8+wpa81+dnx45" />
44+
<group targetFramework="net40" />
45+
<group targetFramework="netstandard1.1" />
3946
</dependencies>
4047
<references></references>
4148
<tags>Linq Statistics stats portable PCL</tags>

src/PackageInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
[assembly: AssemblyDescription("Extensions that add simple statistical methods")]
1414
[assembly: AssemblyCompany("")]
1515
[assembly: AssemblyProduct("LinqStatistics")]
16-
[assembly: AssemblyCopyright("Copyright © Don Kackman 2009, 2013, 2016")]
16+
[assembly: AssemblyCopyright("Copyright © Don Kackman")]
1717
[assembly: AssemblyTrademark("")]
1818
[assembly: AssemblyCulture("")]
1919
[assembly: NeutralResourcesLanguage("en")]
@@ -28,6 +28,6 @@
2828
// You can specify all the values or you can default the Build and Revision Numbers
2929
// by using the '*' as shown below:
3030
// [assembly: AssemblyVersion("1.0.*")]
31-
[assembly: AssemblyVersion("2.2.1.0")]
32-
[assembly: AssemblyFileVersion("2.2.1.0")]
31+
[assembly: AssemblyVersion("2.3.0.0")]
32+
[assembly: AssemblyFileVersion("2.3.0.0")]
3333
[assembly: CLSCompliant(true)]

0 commit comments

Comments
 (0)