From 4adce95abe397b18b9580b741d72615d1962c997 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Mon, 14 Sep 2015 23:40:44 +0200 Subject: [PATCH] v3.25 release --- Changes | 6 ++++++ LICENSE | 2 +- MANIFEST | 6 ++++++ META.yml | 6 +++--- README | 2 +- lib/PLP.pm | 4 ++-- 6 files changed, 19 insertions(+), 7 deletions(-) diff --git a/Changes b/Changes index 92f61c2..d67981f 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,9 @@ +3.25 - April 1, 2018: +- Fix newer perl.vim compatibility +- Test::PLP class to run scripts + - Test plpinfo script for errors +- Override warn under mod_perl for vhost-specific logging + 3.24 - November 20, 2013: - Avoid tie replacement broken in Perl >= 5.18 - Test correct %post behaviour diff --git a/LICENSE b/LICENSE index 359fdaa..534138f 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2000-2002 Juerd Waalboer, 2005-2008 Mischa Poslawsky +Copyright (c) 2000-2002 Juerd Waalboer, 2005-2018 Mischa Poslawsky Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/MANIFEST b/MANIFEST index eb4a946..7555c11 100644 --- a/MANIFEST +++ b/MANIFEST @@ -4,6 +4,7 @@ MANIFEST META.yml README LICENSE +TODO plp.vim lib/PLP.pm lib/PLP/Fields.pm @@ -16,6 +17,7 @@ lib/PLP/Tie/Headers.pm lib/PLP/Tie/Print.pm lib/PLP/FAQ.pod lib/PLP/HowTo.pod +lib/Test/PLP.pm bin/plp.cgi bin/plp.fcgi t/10-functions.t @@ -64,8 +66,12 @@ t/50-cgi/61-%25post+set.plp t/50-cgi/62-%25post+data.html t/50-cgi/62-%25post+data.plp t/50-cgi/62-%25post+data.txt +t/50-cgi/70-multipart.html +t/50-cgi/70-multipart.plp +t/50-cgi/70-multipart.txt t/50-cgi/80-lighttpd+%25ENV.html t/50-cgi/80-lighttpd+%25ENV.plp +t/55-eg.t t/91-meta.t t/92-pod.t t/93-podcover.t diff --git a/META.yml b/META.yml index 064b712..e9f055d 100644 --- a/META.yml +++ b/META.yml @@ -1,7 +1,7 @@ --- #YAML:1.0 name: PLP abstract: Perl in HTML pages -version: 3.24 +version: 3.25 version_from: PLP.pm author: - Mischa POSLAWSKY @@ -32,13 +32,13 @@ optional_features: provides: PLP: file: lib/PLP.pm - version: 3.24 + version: 3.25 PLP::Functions: file: lib/PLP/Functions.pm version: 1.01 PLP::Backend::Apache: file: lib/PLP/Backend/Apache.pm - version: 1.00 + version: 1.01 PLP::Backend::CGI: file: lib/PLP/Backend/CGI.pm version: 1.02 diff --git a/README b/README index 0f057eb..771dcb1 100644 --- a/README +++ b/README @@ -27,7 +27,7 @@ It can also be found at CPAN: COPYRIGHT -Copyright (c) 2000-2002 Juerd Waalboer, 2005-2008 Mischa POSLAWSKY. +Copyright (c) 2000-2002 Juerd Waalboer, 2005-2018 Mischa POSLAWSKY. All rights reserved. This software is free software; you can redistribute and/or modify it diff --git a/lib/PLP.pm b/lib/PLP.pm index 4afb904..58120fa 100644 --- a/lib/PLP.pm +++ b/lib/PLP.pm @@ -14,7 +14,7 @@ use File::Spec; use strict; use warnings; -our $VERSION = '3.24'; +our $VERSION = '3.25'; # Subs in this package: # _default_error($plain, $html) Default error handler @@ -450,7 +450,7 @@ Originally by Juerd Waalboer =head1 LICENSE -Copyright (c) 2000-2002 Juerd Waalboer, 2005-2008 Mischa POSLAWSKY. +Copyright (c) 2000-2002 Juerd Waalboer, 2005-2018 Mischa POSLAWSKY. All rights reserved. This software is free software; -- 2.30.0