From: Marius Gavrilescu Date: Sat, 10 Jun 2017 20:33:14 +0000 (+0300) Subject: Bump version and update Changes X-Git-Tag: 0.002^0 X-Git-Url: http://git.ieval.ro/?p=algorithm-bit-xs.git;a=commitdiff_plain;h=34876640088dd67fcc2c05119cab34cc9fa9a777 Bump version and update Changes --- diff --git a/Changes b/Changes index 795cfaf..8ee7e6e 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,7 @@ Revision history for Perl extension Algorithm::BIT::XS. +0.002 2017-06-10T21:33+01:00 + - Add support for 2D binary indexed trees + 0.001 2017-04-30T18:50+01:00 - Initial release diff --git a/README b/README index 281f12f..d7c984d 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Algorithm-BIT-XS version 0.001 +Algorithm-BIT-XS version 0.002 ============================== A binary indexed tree is a data structure similar to an array of integers. diff --git a/lib/Algorithm/BIT/XS.pm b/lib/Algorithm/BIT/XS.pm index 42591f3..a0e0255 100644 --- a/lib/Algorithm/BIT/XS.pm +++ b/lib/Algorithm/BIT/XS.pm @@ -4,7 +4,7 @@ use 5.014000; use strict; use warnings; -our $VERSION = '0.001'; +our $VERSION = '0.002'; require XSLoader; XSLoader::load('Algorithm::BIT::XS', $VERSION); diff --git a/lib/Algorithm/BIT2D/XS.pm b/lib/Algorithm/BIT2D/XS.pm index d0b872a..00fa82f 100644 --- a/lib/Algorithm/BIT2D/XS.pm +++ b/lib/Algorithm/BIT2D/XS.pm @@ -4,7 +4,7 @@ use 5.014000; use strict; use warnings; -our $VERSION = '0.001'; +our $VERSION = '0.002'; use Algorithm::BIT::XS;