diff options
author | ville <ville@localhost> | 2009-12-02 19:53:35 +0000 |
---|---|---|
committer | ville <ville@localhost> | 2009-12-02 19:53:35 +0000 |
commit | 82f7cb22ed594af7a75159732417d8890232fa84 (patch) | |
tree | 03755ab17aec3b1ffa7e4d668cf7b7c4a4c99183 /misc | |
parent | 07451ecd8c4012304c3ea15c347a4e61dfc585d4 (diff) | |
download | markup-validator-82f7cb22ed594af7a75159732417d8890232fa84.zip markup-validator-82f7cb22ed594af7a75159732417d8890232fa84.tar.gz markup-validator-82f7cb22ed594af7a75159732417d8890232fa84.tar.bz2 |
Preparing for 0.8.6.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/bundle/ChangeLog | 36 | ||||
-rw-r--r-- | misc/bundle/META.yml | 2 | ||||
-rw-r--r-- | misc/bundle/lib/Bundle/W3C/Validator.pm | 2 | ||||
-rw-r--r-- | misc/w3c-markup-validator.spec | 4 |
4 files changed, 40 insertions, 4 deletions
diff --git a/misc/bundle/ChangeLog b/misc/bundle/ChangeLog index 97611bb..fb41846 100644 --- a/misc/bundle/ChangeLog +++ b/misc/bundle/ChangeLog @@ -1,3 +1,39 @@ +2009-11-24 ville + + * lib/Bundle/W3C/Validator.pm: Fix perlcritic "Code before + strictures/warnings" errors. + +2009-09-16 ville + + * lib/Bundle/W3C/Validator.pm: Remove fuzzy matching/"Did you mean + ..." implementation due to too many incorrect suggestions emitted. + We'd need to be aware of which attributes and/or elements are valid + in the checked document in the particular position; flat lists of + all HTML elements and attributes results in too many false + positives. String::Approx usage would have probably needed some + work as well, or perhaps it wasn't the best choice for the task to + begin with. + +2009-06-29 ville + + * lib/Bundle/W3C/Validator.pm: Drop SGML::Parser::OpenSP < 0.991 + workarounds, require >= 0.991. + +2009-06-29 ville + + * lib/Bundle/W3C/Validator.pm: Fix JSON output errors + (missing/extra commas, incorrect escaping) (#7000). New + dependency: JSON >= 2.00. + +2009-06-29 ville + + * lib/Bundle/W3C/Validator.pm: Drop Config::General <= 2.31 + workarounds, require >= 2.32. + +2009-06-23 ville + + * lib/Bundle/W3C/Validator.pm: Require libwww-perl >= 5.802. + 2009-03-27 ville * README, lib/Bundle/W3C/Validator.pm: Update author/maintainer diff --git a/misc/bundle/META.yml b/misc/bundle/META.yml index 478a88a..9ef3237 100644 --- a/misc/bundle/META.yml +++ b/misc/bundle/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: Bundle-W3C-Validator -version: 0.8.5 +version: 0.8.6 abstract: Bundle of modules required by the W3C Markup Validator license: open_source author: diff --git a/misc/bundle/lib/Bundle/W3C/Validator.pm b/misc/bundle/lib/Bundle/W3C/Validator.pm index a3d1b4d..0aaf7db 100644 --- a/misc/bundle/lib/Bundle/W3C/Validator.pm +++ b/misc/bundle/lib/Bundle/W3C/Validator.pm @@ -5,7 +5,7 @@ use strict; use warnings; use vars qw($VERSION); -$VERSION = '0.8.5'; +$VERSION = '0.8.6'; 1; diff --git a/misc/w3c-markup-validator.spec b/misc/w3c-markup-validator.spec index 15a207d..6660855 100644 --- a/misc/w3c-markup-validator.spec +++ b/misc/w3c-markup-validator.spec @@ -1,10 +1,10 @@ # RPM spec file for the W3C Markup Validator -# $Id: w3c-markup-validator.spec,v 1.13 2009-03-13 15:29:15 ot Exp $ +# $Id: w3c-markup-validator.spec,v 1.14 2009-12-02 19:53:34 ville Exp $ %{expand: %%define tbver %(echo %{version} | tr . _)} Name: w3c-markup-validator -Version: 0.8.5 +Version: 0.8.6 Release: 0 Summary: W3C Markup Validator |