summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes4
-rw-r--r--MANIFEST3
-rw-r--r--META.yml2
-rw-r--r--lib/Asterisk/config.pm2
4 files changed, 9 insertions, 2 deletions
diff --git a/Changes b/Changes
index 4d223fb..b26ec99 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,7 @@
+0.97 2009-5-31
+ - Fix handling of hash/array values in _do_append().
+ - Fix truncation of data on _parse() on some cases.
+ - Documentation fixes.
0.96 2008-4-29
- error name _format_convert in _do_append
- add return when not commit list on save_file
diff --git a/MANIFEST b/MANIFEST
index a95a1fc..63b0d0e 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -14,5 +14,8 @@ Makefile.PL
MANIFEST This list of files
README
t/read.t
+t/array_hash.t
t/test.conf
META.yml Module meta-data (added by MakeMaker)
+examples/Asteriskgui.pm Example asterisk-gui DAHDI configuration generator
+examples/Asteriskgui.txt Help text for Asteriskgui.pm
diff --git a/META.yml b/META.yml
index 08720bc..46568ab 100644
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
--- #YAML:1.0
name: Asterisk-config
-version: 0.95
+version: 0.97
abstract: The Asterisk config read and write module.
license: gpl
author:
diff --git a/lib/Asterisk/config.pm b/lib/Asterisk/config.pm
index a1b1b79..86360b2 100644
--- a/lib/Asterisk/config.pm
+++ b/lib/Asterisk/config.pm
@@ -15,7 +15,7 @@ package Asterisk::config;
#
#
#--------------------------------------------------------------
-$Asterisk::config::VERSION='0.96';
+$Asterisk::config::VERSION='0.97';
use strict;
use Fcntl ':flock';