summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2011-02-07 13:25:13 +0100
committerYorhel <git@yorhel.nl>2011-02-07 13:25:13 +0100
commit1c1cee3e12524d32e48f2e72ecced53b6cdc8048 (patch)
tree0fafb236fce2bb541dfec4659f1ef035aa4dffef
parenta745ec407b9df60b3149d4bac459f8fa99cd18fa (diff)
Version 0.1 has been released, this repo will now prepresent 0.2
-rwxr-xr-xBuild.PL2
-rw-r--r--ChangeLog4
-rw-r--r--MANIFEST2
-rw-r--r--lib/TUWF.pm2
-rw-r--r--lib/TUWF/DB.pm2
-rw-r--r--lib/TUWF/Misc.pm2
-rw-r--r--lib/TUWF/Request.pm2
-rw-r--r--lib/TUWF/Response.pm2
-rw-r--r--lib/TUWF/XML.pm2
9 files changed, 12 insertions, 8 deletions
diff --git a/Build.PL b/Build.PL
index eb83300..bb34789 100755
--- a/Build.PL
+++ b/Build.PL
@@ -4,7 +4,7 @@ use Module::Build;
Module::Build->new(
dist_name => 'TUWF',
- dist_version => '0.1',
+ dist_version => '0.2',
dist_author => 'Yoran Heling <yorhel@cpan.org>',
dist_abstract => 'The Ultimate Website Framework',
license => 'mit',
diff --git a/ChangeLog b/ChangeLog
index 6e47d3e..c282495 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,5 @@
-0.1 -
+0.2 -
+
+0.1 - 2011-02-07
Initial version
diff --git a/MANIFEST b/MANIFEST
index 3393ba2..dfdbfc3 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -20,3 +20,5 @@ lib/TUWF/XML.pm
lib/TUWF/XML.pod
MANIFEST This list of files
README
+Makefile.PL
+META.yml
diff --git a/lib/TUWF.pm b/lib/TUWF.pm
index 7966bd2..1d3a658 100644
--- a/lib/TUWF.pm
+++ b/lib/TUWF.pm
@@ -7,7 +7,7 @@ use strict;
use warnings;
use Carp 'croak';
-our $VERSION = '0.1';
+our $VERSION = '0.2';
# Store the object in a global variable for some functions that don't get it
diff --git a/lib/TUWF/DB.pm b/lib/TUWF/DB.pm
index 96b7c89..6a0caa6 100644
--- a/lib/TUWF/DB.pm
+++ b/lib/TUWF/DB.pm
@@ -6,7 +6,7 @@ use warnings;
use Carp 'croak';
use Exporter 'import';
-our $VERSION = '0.1';
+our $VERSION = '0.2';
our @EXPORT = qw|
dbInit dbh dbCheck dbDisconnect dbCommit dbRollBack
dbExec dbRow dbAll dbPage
diff --git a/lib/TUWF/Misc.pm b/lib/TUWF/Misc.pm
index f7d5906..d9ff3c0 100644
--- a/lib/TUWF/Misc.pm
+++ b/lib/TUWF/Misc.pm
@@ -11,7 +11,7 @@ use Encode 'encode_utf8';
use Scalar::Util 'looks_like_number';
-our $VERSION = '0.1';
+our $VERSION = '0.2';
our @EXPORT = ('formValidate', 'mail');
our @EXPORT_OK = ('uri_escape', 'kv_validate');
diff --git a/lib/TUWF/Request.pm b/lib/TUWF/Request.pm
index c1a9857..74b1ae2 100644
--- a/lib/TUWF/Request.pm
+++ b/lib/TUWF/Request.pm
@@ -7,7 +7,7 @@ use Encode 'decode_utf8', 'encode_utf8';
use Exporter 'import';
use Carp 'croak';
-our $VERSION = '0.1';
+our $VERSION = '0.2';
our @EXPORT = qw|
reqInit reqGet reqPost reqParam reqUploadMIME reqUploadRaw reqSaveUpload
reqCookie reqMethod reqHeader reqPath reqBaseURI reqURI reqHost reqIP
diff --git a/lib/TUWF/Response.pm b/lib/TUWF/Response.pm
index 39eadad..3c0eab6 100644
--- a/lib/TUWF/Response.pm
+++ b/lib/TUWF/Response.pm
@@ -8,7 +8,7 @@ use Exporter 'import';
use POSIX 'strftime';
-our $VERSION = '0.1';
+our $VERSION = '0.2';
our @EXPORT = qw|
resInit resHeader resCookie resBuffer resFd resStatus resRedirect resNotFound resFinish
|;
diff --git a/lib/TUWF/XML.pm b/lib/TUWF/XML.pm
index 668ea5e..a78d383 100644
--- a/lib/TUWF/XML.pm
+++ b/lib/TUWF/XML.pm
@@ -10,7 +10,7 @@ use Exporter 'import';
use Carp 'carp', 'croak';
-our $VERSION = '0.1';
+our $VERSION = '0.2';
our(@EXPORT_OK, %EXPORT_TAGS, @htmltags, @htmlexport, @xmlexport, %htmlbool, $OBJ);