summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2019-07-06 12:10:10 +0200
committerYorhel <git@yorhel.nl>2019-07-06 12:10:10 +0200
commit84a5d827f3f32684cffafe59d4694c1deeed2456 (patch)
treea91a5075b04c48f57b36fc70e27b108a4086f1fa
parenta5771cfa21085877ef2fbb2b29d1e0f099cab1e8 (diff)
Alright then, have it your way, version 1.4v1.4
-rw-r--r--Build.PL2
-rw-r--r--ChangeLog3
-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/Validate.pm2
-rw-r--r--lib/TUWF/Validate/Interop.pm2
-rw-r--r--lib/TUWF/XML.pm2
10 files changed, 12 insertions, 9 deletions
diff --git a/Build.PL b/Build.PL
index 9f102ad..30193be 100644
--- a/Build.PL
+++ b/Build.PL
@@ -4,7 +4,7 @@ use Module::Build;
Module::Build->new(
dist_name => 'TUWF',
- dist_version => '1.3.1',
+ dist_version => '1.4',
dist_author => 'Yoran Heling <projects@yorhel.nl>',
dist_abstract => 'The Ultimate Website Framework',
license => 'mit',
diff --git a/ChangeLog b/ChangeLog
index 0fead89..2e7dd7c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+1.4 - 2019-07-06
+ - Version bump because CPAN doesn't like patch versions
+
1.3.1 - 2019-07-06
- Fix some tests (hopefully)
diff --git a/lib/TUWF.pm b/lib/TUWF.pm
index e682a0a..612696b 100644
--- a/lib/TUWF.pm
+++ b/lib/TUWF.pm
@@ -7,7 +7,7 @@ use strict;
use warnings;
use Carp 'croak';
-our $VERSION = '1.3.1';
+our $VERSION = '1.4';
# 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 b98b50e..b70b8a2 100644
--- a/lib/TUWF/DB.pm
+++ b/lib/TUWF/DB.pm
@@ -7,7 +7,7 @@ use Carp 'croak';
use Exporter 'import';
use Time::HiRes 'time';
-our $VERSION = '1.3.1';
+our $VERSION = '1.4';
our @EXPORT = qw|
dbInit dbh dbCheck dbDisconnect dbCommit dbRollBack
dbExec dbVal dbRow dbAll dbPage
diff --git a/lib/TUWF/Misc.pm b/lib/TUWF/Misc.pm
index a8676c4..6c08aff 100644
--- a/lib/TUWF/Misc.pm
+++ b/lib/TUWF/Misc.pm
@@ -12,7 +12,7 @@ use Scalar::Util 'looks_like_number';
use TUWF::Validate;
-our $VERSION = '1.3.1';
+our $VERSION = '1.4';
our @EXPORT_OK = ('uri_escape', 'kv_validate');
diff --git a/lib/TUWF/Request.pm b/lib/TUWF/Request.pm
index 110535e..c7054eb 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 = '1.3.1';
+our $VERSION = '1.4';
our @EXPORT = qw|
reqInit reqGets reqGet reqPosts reqPost reqParams reqParam reqJSON
reqUploadMIMEs reqUploadMIME reqUploadRaws reqUploadRaw reqSaveUpload
diff --git a/lib/TUWF/Response.pm b/lib/TUWF/Response.pm
index f52441e..9918879 100644
--- a/lib/TUWF/Response.pm
+++ b/lib/TUWF/Response.pm
@@ -9,7 +9,7 @@ use POSIX 'strftime';
use Carp 'croak';
-our $VERSION = '1.3.1';
+our $VERSION = '1.4';
our @EXPORT = qw|
resInit resHeader resCookie resBuffer resFd resStatus resRedirect
resNotFound resJSON resBinary resFile resFinish
diff --git a/lib/TUWF/Validate.pm b/lib/TUWF/Validate.pm
index 2f5d69b..2d46330 100644
--- a/lib/TUWF/Validate.pm
+++ b/lib/TUWF/Validate.pm
@@ -7,7 +7,7 @@ use Exporter 'import';
use Scalar::Util 'blessed';
our @EXPORT_OK = qw/compile validate/;
-our $VERSION = '1.3.1';
+our $VERSION = '1.4';
# Unavailable as custom validation names
diff --git a/lib/TUWF/Validate/Interop.pm b/lib/TUWF/Validate/Interop.pm
index 5f40c5c..7da63b3 100644
--- a/lib/TUWF/Validate/Interop.pm
+++ b/lib/TUWF/Validate/Interop.pm
@@ -7,7 +7,7 @@ use Exporter 'import';
use Carp 'croak';
our @EXPORT_OK = ('analyze');
-our $VERSION = '1.3.1';
+our $VERSION = '1.4';
# Analyzed ("flattened") object:
diff --git a/lib/TUWF/XML.pm b/lib/TUWF/XML.pm
index 9714284..87afa4f 100644
--- a/lib/TUWF/XML.pm
+++ b/lib/TUWF/XML.pm
@@ -10,7 +10,7 @@ use Exporter 'import';
use Carp 'carp', 'croak';
-our $VERSION = '1.3.1';
+our $VERSION = '1.4';
our(@EXPORT_OK, %EXPORT_TAGS, $OBJ);
# List::Util provides a uniq() since 1.45, but for some reason my Perl comes