From 34876640088dd67fcc2c05119cab34cc9fa9a777 Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Sat, 10 Jun 2017 23:33:14 +0300 Subject: [PATCH] Bump version and update Changes --- Changes | 3 +++ README | 2 +- lib/Algorithm/BIT/XS.pm | 2 +- lib/Algorithm/BIT2D/XS.pm | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) 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; -- 2.39.2