Skip to content

Commit 204bf2c

Browse files
committed
Merge pull request #7 from daldoyle/master
issue=708
2 parents de04236 + 2e457ff commit 204bf2c

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## GRNOC TSDS Aggregate 1.0.2 -- Tues Apr 19 2016
2+
3+
### Features:
4+
* ISSUE=708 Fixed edge case where writer would complain about aggregate messages with a histogram width
5+
with a floating point value. This was only seen in cases where data variances were very small, such
6+
as in optical readings.
7+
8+
19
## GRNOC TSDS Aggregate 1.0.1 -- Fri Mar 04 2016
210

311
### Features:

grnoc-tsds-aggregate.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Summary: GRNOC TSDS Aggregate
22
Name: grnoc-tsds-aggregate
3-
Version: 1.0.1
3+
Version: 1.0.2
44
Release: 1%{?dist}
55
License: GRNOC
66
Group: Measurement

lib/GRNOC/TSDS/Aggregate.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ package GRNOC::TSDS::Aggregate;
33
use strict;
44
use warnings;
55

6-
our $VERSION = "1.0.1";
6+
our $VERSION = "1.0.2";
77

88
1;

lib/GRNOC/TSDS/Aggregate/Aggregator/Message.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ has meta => ( is => 'ro',
3838
has values => ( is => 'ro',
3939
isa => ArrayRef[ Dict[ 'name' => Str,
4040
'hist_res' => Maybe[PositiveNum],
41-
'hist_min_width' => Maybe[PositiveInt] ] ],
41+
'hist_min_width' => Maybe[PositiveNum] ] ],
4242
required => 1 );
4343

4444
has required_meta => ( is => 'ro',

0 commit comments

Comments
 (0)