File: Changes

package info (click to toggle)
libforest-perl 0.10-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 344 kB
  • sloc: perl: 3,257; makefile: 2
file content (104 lines) | stat: -rw-r--r-- 2,981 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
Revision history for Perl extension Forest

0.10 Wed. Dec. 8th, 2013
    - remove MooseX::AttributeHelpers
      dependency (doy)

0.09 Mon. Sep. 27, 2010
    - silence warnings on new Moose (doy)

0.08 Wed. Jan. 13, 2010
    *** MAJOR REFACTORINGS ***
         (by nothingmuch)

    + Forest::Tree::Pure
    + Forest::Tree::Constructor
    + Forest::Tree::Builder
    + Forest::Tree::Builder::Callback
    + Forest::Tree::Builder::SimpleTextFile
      - added these packages as well as tests

    * Forest::Tree
      - this is now a subclass of Forest::Tree::Pure

    - many other changes all over the place as well
      as best we can tell this is still 100% back-compat
      but if you experience anything to the contrary
      please let us know ASAP. Thanks.

0.07 Sat. July 18, 2009
    - Fix spelling of weak_ref in some
      attrs (cory watson)

    * Forest::Tree::Writer
      - no longer a weak-ref on the tree
        because that is probably not what
        we actually want.

0.06 Fri. Feb. 27, 2009
    - whoops, tons of .git stuff in that last
      release
    - updated MANIFEST.SKIP so don't get all
      that git stuff

0.05 Fri. Feb. 27, 2009
    - fixed all the test plans and updated copyright

0.04 Sun. Sept. 7, 2008
    * Forest::Tree::Writer::SimpleHTML
      - removed Sub::Current dependency because it
        cannot be compiled on Win32 with 5.8.*
        (thanks to Nilson Santos Figueiredo Junior)

0.03 Sun. Aug. 10, 2008
    * Forest::Tree
      - fixing bug where children were not getting
        the parent sorted correctly
        - added several tests for this

0.02 Sat. July 12, 2008
    ~ converted from Module::Build to Module::Install

    -- removed Forest::Tree::Service::* this will be
       moved to another distro soon.

    * Forest::Tree
      - added size and height attributes (groditi)

    * Forest::Tree::Writer
      Forest::Tree::Writer::SimpleASCII
      Forest::Tree::Writer::SimpleHTML
      - added node_formatter support
        - added tests for this

    * Forest::Tree::Writer::ASCIIWithBranches
      - added this module for drawing ASCII trees
        with nice little branches and such.
        - added tests for this

    * Forest::Tree::Roles::CanCreateSubTree
      - refactored out some common functionality
        into roles

    * Forest::Tree::Loader
      - added this generic role for loading of
        trees.

    * Forest::Tree::Loader::SimpleUIDLoader
      - added this module as a way to load a tree
        from a simple ArrayOfHash tables
        - added tests for this

    * Forest::Tree::Roles::LoadWithMetaData
      - simple role to work with loaders and add
        the metadata in as the tree is being created
        - added tests for this

    * Forest::Tree::Reader
      - this now also ->does(Forest::Tree::Loader)
        so that you can be more general about how
        your stuff gets loaded.
        - added tests for this

0.01 Wed. Feb. 13, 2008
    - filling a need