~ubuntu-branches/ubuntu/trusty/libpod-simple-perl/trusty

« back to all changes in this revision

Viewing changes to ChangeLog

  • Committer: Package Import Robot
  • Author(s): gregor herrmann
  • Date: 2012-06-02 19:46:46 UTC
  • mfrom: (1.1.15)
  • Revision ID: package-import@ubuntu.com-20120602194646-snwch2m75wjvyua9
Tags: 3.22-1
* New upstream release.
* Remove patches, all applied upstream.
* Update years of packaging copyright.
* Add debian/NEWS mentioning a compatibility change.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# ChangeLog for Pod::Simple dist
2
2
#---------------------------------------------------------------------------
3
3
 
 
4
2012-05-27   David E. Wheeler <david@justatheory.org>
 
5
        * Release 3.22
 
6
 
 
7
        Fix but where Pod::Simple would whine about non-ASCII bytes in
 
8
        code or comments. Now only does so for Pod (in the absence of an
 
9
        "=encoding" tag. Broken in 3.21. Grant McLean.
 
10
 
 
11
2012-05-23   David E. Wheeler <david@justatheory.org>
 
12
        * Release 3.21
 
13
 
 
14
        NOTE: COMPATABILITY CHANGE: The 'codes_in_verbatim' option in
 
15
        Pod::Simple::XHTML is no longer enabled by default. This brings it
 
16
        agreement with the other formatting classes, and eliminates
 
17
        unexpected behavior in XHTML-formatted Pod. Users who depended on
 
18
        this functionality can still get it by enabling
 
19
        'codes_in_verbatim' in their code.
 
20
 
 
21
        Fixed some typos in the documentation. Thanks to Jonathan Yu via
 
22
        the Debian packagers via Florian Ragwitz (RT #75532).
 
23
 
 
24
        Now emit a warning the first time a non-ASCII byte is encountered
 
25
        when no "=encoding" has been seen. Grant McLean.
 
26
 
 
27
        When a non-ASCII byte is encounted before an "=encoding" line has
 
28
        been seen, a heuristic (as described in perlpodspec) is applied to
 
29
        select UTF-8 encoding if the non-ASCII bytes form a valid UTF-8
 
30
        byte sequence, or Latin-1 otherwise. Grant McLean.
 
31
 
 
32
        Added 'handle_code' method to Pod::Simple::XHTML. This allows
 
33
        subclasses to override the handling of verbatim blocks, and makes
 
34
        for a more cohesive interface, to boot. Gisle Aas.
 
35
 
 
36
        Subsequent text segments are now joined together and passed as a
 
37
        single unit to text handling code. This makes it easier for custom
 
38
        handlers to process complete blocks of text in a single call to
 
39
        'handle_text', rather than in dribs and drabs. Gisle Aas.
 
40
 
 
41
        Replaced naive text wrapping code in Pod::Simple::DumpAsXML with
 
42
        Text::Wrap, which was already used for similar purposes elsewhere
 
43
        in Pod::Simple. Gisle Aas.
 
44
 
4
45
2012-03-01   David E. Wheeler <david@justatheory.org>
5
46
        * Release 3.20
6
47