[libcatmandu-perl] 70/101: versions everywhere

Jonas Smedegaard dr at jones.dk
Tue Feb 23 13:43:57 UTC 2016


This is an automated email from the git hooks/post-receive script.

js pushed a commit to branch master
in repository libcatmandu-perl.

commit 7d33422406e43c13c903dc0f2e47a68435b7081f
Author: Nicolas Steenlant <nicolas.steenlant at ugent.be>
Date:   Thu Feb 4 16:29:59 2016 +0100

    versions everywhere
---
 Build.PL                       |  6 +++---
 Changes                        | 17 +++++++++++++++++
 lib/Catmandu/Exporter/Mock.pm  | 20 ++++++++++----------
 lib/Catmandu/Fix/uri_decode.pm |  3 +++
 lib/Catmandu/Fix/uri_encode.pm |  3 +++
 5 files changed, 36 insertions(+), 13 deletions(-)

diff --git a/Build.PL b/Build.PL
index 946832e..b01f39c 100644
--- a/Build.PL
+++ b/Build.PL
@@ -1,5 +1,5 @@
 
-# This file was automatically generated by Dist::Zilla::Plugin::ModuleBuild v5.039.
+# This file was automatically generated by Dist::Zilla::Plugin::ModuleBuild v5.041.
 use strict;
 use warnings;
 
@@ -15,10 +15,10 @@ my %module_build_args = (
   },
   "dist_abstract" => "a data toolkit",
   "dist_author" => [
-    "Nicolas Steenlant <nicolas.steenlant\@ugent.be>"
+    "Nicolas Steenlant, C<< <nicolas.steenlant at ugent.be> >>"
   ],
   "dist_name" => "Catmandu",
-  "dist_version" => "0.9505",
+  "dist_version" => "1.00_01",
   "license" => "perl",
   "module_name" => "Catmandu",
   "recommends" => {
diff --git a/Changes b/Changes
index cc222c4..eeb3de5 100644
--- a/Changes
+++ b/Changes
@@ -1,6 +1,23 @@
 Revision history for Catmandu
 
 {{$NEXT}}
+  - lots of pod
+  - lots of tests
+  - new Exporter::Mock
+  - new Importer::TSV and Exporter::TSV
+  - new 'uri_decode' and 'uri_encode' fixes
+  - new Droppable and Transactional roles for stores
+  - new 'drop' command
+  - switch to MooX::Role::Logger for logging
+  - smarter CSV::Importer
+  - new specialized TabulerExporter base role
+  - fix bug in 'array_to_sentence' helper function
+  - fix $append bug in 'data_at' helper function
+  - the 'data' command is deprecated. All it's functionality is now provided by
+    the 'import', 'export', 'convert' and 'copy' commands
+  - rename the 'move' command to the more accurate 'copy'
+  - line delimited JSON is no longer the default for Importer::JSON and
+    Exporter:JSON
 
 0.9505  2015-12-02 10:36:58 CET
   - expand, collapse and vacuum fixes handle large arrays
diff --git a/lib/Catmandu/Exporter/Mock.pm b/lib/Catmandu/Exporter/Mock.pm
index 718e89c..8fa0efa 100644
--- a/lib/Catmandu/Exporter/Mock.pm
+++ b/lib/Catmandu/Exporter/Mock.pm
@@ -12,14 +12,14 @@ with 'Catmandu::Exporter';
 has _data_ => (is => 'ro', default => sub { [] });
 
 sub add {
-	my ($self, $data) = @_;
-	push @{$self->_data_} , $data;
-	1;
+    my ($self, $data) = @_;
+    push @{$self->_data_} , $data;
+    1;
 }
 
 sub as_arrayref {
-	my ($self) = @_;
-	return $self->_data_;
+    my ($self) = @_;
+    return $self->_data_;
 }
 
 1;
@@ -34,8 +34,8 @@ Catmandu::Exporter::Mock - a expoter that doesn't export anything
 
 =head1 SYNOPSIS
 
-  	# From the commandline
-  	$ catmandu convert JSON --fix myfixes to Mock < /tmp/data.json
+    # From the commandline
+    $ catmandu convert JSON --fix myfixes to Mock < /tmp/data.json
 
     # From Perl
 
@@ -52,9 +52,9 @@ Catmandu::Exporter::Mock - a expoter that doesn't export anything
 
     printf "exported %d objects\n" , $exporter->count;
 
-	# Get an array ref of all records exported
+    # Get an array ref of all records exported
     my $data = $exporter->as_arrayref;
-	
+    
 =head1 DESCRIPTION
 
 This exporter exports nothing and can be used as in situations where you e.g. export
@@ -65,4 +65,4 @@ array of all the records exported which can be retrieved with the 'as_arrayref'
 
 L<Catmandu::Exporter::Null>
 
-=cut
\ No newline at end of file
+=cut
diff --git a/lib/Catmandu/Fix/uri_decode.pm b/lib/Catmandu/Fix/uri_decode.pm
index 3ccf47c..05544e2 100644
--- a/lib/Catmandu/Fix/uri_decode.pm
+++ b/lib/Catmandu/Fix/uri_decode.pm
@@ -1,6 +1,9 @@
 package Catmandu::Fix::uri_decode;
 
 use Catmandu::Sane;
+
+our $VERSION = '0.9505';
+
 use Moo;
 use Encode ();
 use URI::Escape ();
diff --git a/lib/Catmandu/Fix/uri_encode.pm b/lib/Catmandu/Fix/uri_encode.pm
index 65cf9d6..c588769 100644
--- a/lib/Catmandu/Fix/uri_encode.pm
+++ b/lib/Catmandu/Fix/uri_encode.pm
@@ -1,6 +1,9 @@
 package Catmandu::Fix::uri_encode;
 
 use Catmandu::Sane;
+
+our $VERSION = '0.9505';
+
 use Moo;
 use URI::Escape ();
 use namespace::clean;

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libcatmandu-perl.git



More information about the Pkg-perl-cvs-commits mailing list