From: Marius Gavrilescu Date: Sat, 16 Apr 2016 18:51:06 +0000 (+0300) Subject: Bump version and update Changes X-Git-Tag: 0.001001^0 X-Git-Url: http://git.ieval.ro/?p=image-openalpr.git;a=commitdiff_plain;h=4d4051da2ad5f86a0faad11d662e36882f7ed8be Bump version and update Changes --- diff --git a/Changes b/Changes index da0d8fa..0b35339 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,10 @@ Revision history for Perl extension Image::OpenALPR. +0.001001 2016-04-16T21:51+03:00 + - Use Devel::CheckLib to abort Makefile generation if library is not found + - Overload stringify operator in Image::OpenALPR::PlateResult + - Improve POD + - Expand testsuite + 0.001 2016-04-10T01:42+03:00 - Initial release \ No newline at end of file diff --git a/lib/Image/OpenALPR.pm b/lib/Image/OpenALPR.pm index b1124a2..81521ed 100644 --- a/lib/Image/OpenALPR.pm +++ b/lib/Image/OpenALPR.pm @@ -9,7 +9,7 @@ use JSON::MaybeXS qw/decode_json/; use XSLoader; BEGIN { - our $VERSION = '0.001'; + our $VERSION = '0.001001'; XSLoader::load('Image::OpenALPR', $VERSION); *initialise = \&initialize; *is_loaded = \&isLoaded; diff --git a/lib/Image/OpenALPR/PlateResult.pm b/lib/Image/OpenALPR/PlateResult.pm index e06a3e9..b24f899 100644 --- a/lib/Image/OpenALPR/PlateResult.pm +++ b/lib/Image/OpenALPR/PlateResult.pm @@ -7,7 +7,7 @@ use warnings; use overload '""' => sub { shift->plate }, fallback => 1; use parent qw/Class::Accessor::Fast/; -our $VERSION = '0.001'; +our $VERSION = '0.001001'; __PACKAGE__->mk_ro_accessors(qw/plate confidence matches_template/);