From b86ffa8b788d1539383878e36303f6f4f4356d4c Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Quelin?= Date: Wed, 16 Jan 2008 18:35:36 +0100 Subject: [PATCH] v0.2.0 - bounds_check() implemented - added missing sanity checks in constructors - no more todo tests - better way of returning without RETVAL - first rc for 1.0.0 --- Changes | 14 ++++++++++++-- lib/Language/Befunge/Vector/XS.pm | 2 +- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index ddf73dc..958c233 100644 --- a/Changes +++ b/Changes @@ -3,13 +3,23 @@ Revision history for Language::Befunge::Vector::XS. High-level changelog ==================== -0.1.x more robust constructors -0.0.x initial work +0.2.x feature-completeness, 1.0.0-rc +0.1.x more robust constructors +0.0.x initial work Low-level changelog =================== +0.2.0 Wed Jan 16 18:34:38 CET 2008 + - bounds_check() implemented + - added missing sanity checks in constructors + - no more todo tests + - better way of returning without RETVAL + - first rc for 1.0.0 + +** + 0.1.3 Wed Jan 16 17:09:41 CET 2008 - fixed leftover of RETVAL sillyness (should build/test on more platforms now) diff --git a/lib/Language/Befunge/Vector/XS.pm b/lib/Language/Befunge/Vector/XS.pm index b9ba325..75831aa 100644 --- a/lib/Language/Befunge/Vector/XS.pm +++ b/lib/Language/Befunge/Vector/XS.pm @@ -22,7 +22,7 @@ use overload '<=>' => \&_compare, '""' => \&as_string; -our $VERSION = '0.1.3'; +our $VERSION = '0.2.0'; require XSLoader; XSLoader::load('Language::Befunge::Vector::XS', $VERSION); -- 2.11.4.GIT