Skip to content

Commit

Permalink
Merge pull request #7 from daldoyle/master
Browse files Browse the repository at this point in the history
issue=708
  • Loading branch information
daldoyle committed Apr 19, 2016
2 parents de04236 + 2e457ff commit 204bf2c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## GRNOC TSDS Aggregate 1.0.2 -- Tues Apr 19 2016

### Features:
* ISSUE=708 Fixed edge case where writer would complain about aggregate messages with a histogram width
with a floating point value. This was only seen in cases where data variances were very small, such
as in optical readings.


## GRNOC TSDS Aggregate 1.0.1 -- Fri Mar 04 2016

### Features:
Expand Down
2 changes: 1 addition & 1 deletion grnoc-tsds-aggregate.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Summary: GRNOC TSDS Aggregate
Name: grnoc-tsds-aggregate
Version: 1.0.1
Version: 1.0.2
Release: 1%{?dist}
License: GRNOC
Group: Measurement
Expand Down
2 changes: 1 addition & 1 deletion lib/GRNOC/TSDS/Aggregate.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ package GRNOC::TSDS::Aggregate;
use strict;
use warnings;

our $VERSION = "1.0.1";
our $VERSION = "1.0.2";

1;
2 changes: 1 addition & 1 deletion lib/GRNOC/TSDS/Aggregate/Aggregator/Message.pm
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ has meta => ( is => 'ro',
has values => ( is => 'ro',
isa => ArrayRef[ Dict[ 'name' => Str,
'hist_res' => Maybe[PositiveNum],
'hist_min_width' => Maybe[PositiveInt] ] ],
'hist_min_width' => Maybe[PositiveNum] ] ],
required => 1 );

has required_meta => ( is => 'ro',
Expand Down

0 comments on commit 204bf2c

Please sign in to comment.