Skip to content

Commit 18886cc

Browse files
committed
2.1 release prep
1 parent a81f972 commit 18886cc

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

LinqStatistics.Packager/Package.nuspec

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,25 @@
22
<package >
33
<metadata>
44
<id>LinqStatistics</id>
5-
<version>2.0.0</version>
5+
<version>2.1.0</version>
66
<title>LinqStatistics</title>
77
<authors>dkackman</authors>
88
<owners></owners>
99
<description>
1010
Extension methods that add additional simple statistical calculations to the built in sum, min, max, average etc.
1111
Includes Covariance, Median, Mode, Pearson's Chi Squared, Range, Standard Deviation (sample and population), Variance (sample and population), CountEach, Histograms, Root Mean Square, Least Squares and Kurtosis
1212
</description>
13-
<releaseNotes>
13+
<releaseNotes>
1414
1.1.0
1515
- Made code comments, argument checking and implementations consistent using T4 templates
1616
2.0.0
1717
- Added MinMax (calculate minimum and maximum in a single pass)
1818
- Improve performance of Histogram and Range by eliminating multiple enumeration
1919
- Some interface changing refactoring (Range and Bin classes)
2020
- Added portable library
21+
2.1.0
22+
- Added alternate implmentations that return NaN instead of excepting under invlaid input conditions
23+
- Add checked scope to accumulator blocks
2124
</releaseNotes>
2225
<summary>
2326
Extensions that add simple statistical methods

PackageInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@
2929
// You can specify all the values or you can default the Build and Revision Numbers
3030
// by using the '*' as shown below:
3131
// [assembly: AssemblyVersion("1.0.*")]
32-
[assembly: AssemblyVersion("2.0.0.0")]
33-
[assembly: AssemblyFileVersion("2.0.0.0")]
32+
[assembly: AssemblyVersion("2.1.0.0")]
33+
[assembly: AssemblyFileVersion("2.1.0.0")]
3434
[assembly: CLSCompliant(true)]

0 commit comments

Comments
 (0)