Skip to content

Commit

Permalink
4.0.22
Browse files Browse the repository at this point in the history
  • Loading branch information
tsibley committed Nov 10, 2016
1 parent 8de9bd0 commit d7a8f7e
Show file tree
Hide file tree
Showing 90 changed files with 180 additions and 177 deletions.
2 changes: 2 additions & 0 deletions Changes
@@ -1,4 +1,6 @@
{{$NEXT}}

4.0.22 2016-11-09 16:24:48 PST
[Features]
* fromcsv: Support custom quote character to aid in parsing weird CSVs

Expand Down
7 changes: 4 additions & 3 deletions META.json
Expand Up @@ -6,7 +6,7 @@
"Thomas Sibley <tsibley@cpan.org>"
],
"dynamic_config" : 0,
"generated_by" : "Dist::Zilla version 6.005, CPAN::Meta::Converter version 2.150005",
"generated_by" : "Dist::Zilla version 6.008, CPAN::Meta::Converter version 2.150005",
"license" : [
"mit"
],
Expand Down Expand Up @@ -244,7 +244,7 @@
"web" : "https://github.com/benbernard/RecordStream"
}
},
"version" : "4.0.21",
"version" : "4.0.22",
"x_contributors" : [
"Ben Bernard <github@benjaminbernard.com>",
"Brandon Forehand <b4hand@users.sf.net>",
Expand All @@ -255,6 +255,7 @@
"Shawn Halpenny <paxunix@gmail.com>",
"Tomohiro Hosaka <bokutin@bokut.in>",
"Torsten Blix <torsten.blix@gmail.com>"
]
],
"x_serialization_backend" : "Cpanel::JSON::XS version 3.0219"
}

2 changes: 1 addition & 1 deletion Makefile.PL
Expand Up @@ -86,7 +86,7 @@ my %WriteMakefileArgs = (
"Module::Versions::Report" => "1.06",
"Test::More" => "0.88"
},
"VERSION" => "4.0.21",
"VERSION" => "4.0.22",
"test" => {
"TESTS" => "t/*.t"
}
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream.pm
Expand Up @@ -4,7 +4,7 @@ use warnings;
package App::RecordStream;
use Module::Pluggable::Object;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

sub operation_packages {
sort { $a cmp $b }
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Accumulator.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Accumulator;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

sub accept_record {
my $this = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/Aggregation.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::Aggregation;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

# marker for aggregators (used in isa checks)

Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/Array.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::Array;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/Average.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::Average;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/Concatenate.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::Concatenate;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/Correlation.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::Correlation;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/Count.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::Count;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/CountBy.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::CountBy;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/Covariance.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::Covariance;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/DistinctCount.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::DistinctCount;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/First.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::First;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/FirstRecord.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::FirstRecord;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/InjectInto.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::InjectInto;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use App::RecordStream::Aggregator;

Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/InjectInto/Field.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::InjectInto::Field;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/Last.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::Last;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/LastRecord.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::LastRecord;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/MapReduce.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::MapReduce;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/MapReduce/Field.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::MapReduce::Field;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/MapReduce/FieldSet.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::MapReduce::FieldSet;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/Maximum.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::Maximum;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/Minimum.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::Minimum;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/Mode.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::Mode;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/Ord2Bivariate.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::Ord2Bivariate;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/Ord2Univariate.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::Ord2Univariate;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/Percentile.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::Percentile;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/PercentileMap.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::PercentileMap;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/RecordForMaximum.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::RecordForMaximum;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/RecordForMinimum.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::RecordForMinimum;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/Records.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::Records;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/StandardDeviation.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::StandardDeviation;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/Sum.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::Sum;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/UniqArray.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::UniqArray;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/UniqConcatenate.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::UniqConcatenate;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/ValuesToKeys.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::ValuesToKeys;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Aggregator/Variance.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Aggregator::Variance;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/DBHandle.pm
@@ -1,6 +1,6 @@
package App::RecordStream::DBHandle;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Executor.pm
Expand Up @@ -3,7 +3,7 @@

package App::RecordStream::Executor;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/InputStream.pm
Expand Up @@ -72,7 +72,7 @@ streams are exhausted
=cut

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/KeyGroups.pm
@@ -1,5 +1,5 @@
package App::RecordStream::KeyGroups;
our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/KeySpec.pm
Expand Up @@ -20,7 +20,7 @@ This class knows out to look up a keyspec in a datastructure
=cut

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/LRUSheriff.pm
@@ -1,6 +1,6 @@
package App::RecordStream::LRUSheriff;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/RecordStream/Operation.pm
@@ -1,6 +1,6 @@
package App::RecordStream::Operation;

our $VERSION = "4.0.21";
our $VERSION = "4.0.22";

use strict;
use warnings;
Expand Down

0 comments on commit d7a8f7e

Please sign in to comment.