diff --git a/HISTORY.md b/HISTORY.md index 5b96aa1..9e6b04d 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,10 @@ History ------- +Version 0.1.0 - Jun 17 2016 +--------------------------- +* Change the way SUM is calculated for counter types. SUM will now be calculated as sum the input values instead of the sum of incremental updated counter value for each time period. + Version 0.0.8 - Jun 08 2016 --------------------------- * protect against memory starvation diff --git a/netuitive-statsd b/netuitive-statsd index eaf3e42..d3cccec 100755 --- a/netuitive-statsd +++ b/netuitive-statsd @@ -64,7 +64,7 @@ from setproctitle import setproctitle import libs # Constants -__version__ = "0.0.8" +__version__ = "0.1.0" __author__ = "Netuitive, Inc." __license__ = "Apache 2.0" diff --git a/setup.py b/setup.py index 962bde0..795ee0f 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( name='netuitive_statsd', - version='0.0.8', + version='0.1.0', description="Netuitive StatsD server", long_description='Netuitive StatsD server\n', author="Netuitive",