Skip to content

Commit

Permalink
Updated statsd.net version to v1.5.0.0. Closes #30, #31 and #32
Browse files Browse the repository at this point in the history
  • Loading branch information
lukevenediger committed Sep 1, 2014
1 parent d576111 commit 1573b56
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions statsd.net.core/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// 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("1.4.1.0")]
[assembly: AssemblyFileVersion("1.4.1.0")]
[assembly: AssemblyVersion("1.5.0.0")]
[assembly: AssemblyFileVersion("1.5.0.0")]
4 changes: 2 additions & 2 deletions statsd.net.shared/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// 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("1.4.1.0")]
[assembly: AssemblyFileVersion("1.4.1.0")]
[assembly: AssemblyVersion("1.5.0.0")]
[assembly: AssemblyFileVersion("1.5.0.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ public static ActionBlock<StatsdMessage> CreateBlock(ITargetBlock<CounterBucket>
(key) =>
{
var window = new ConcurrentDictionary<string, int>();
window.AddOrUpdate(metricName, (key2) => 1, (key2, oldValue) => oldValue + 1);
window.AddOrUpdate(metricName, (key2) => 1, (key2, oldValue) => 1);
return window;
},
(key, window) =>
{
window.AddOrUpdate(metricName, (key2) => 1, (key2, oldValue) => oldValue + 1);
window.AddOrUpdate(metricName, (key2) => 1, (key2, oldValue) => 1);
return window;
}
);
Expand Down
4 changes: 2 additions & 2 deletions statsd.net/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
// Uses SEMVER: http://semver.org/
[assembly: AssemblyVersion("1.4.1.0")]
[assembly: AssemblyFileVersion("1.4.1.0")]
[assembly: AssemblyVersion("1.5.0.0")]
[assembly: AssemblyFileVersion("1.5.0.0")]

0 comments on commit 1573b56

Please sign in to comment.