depend on ::XS 0.24
[gitmo/Package-Stash.git] / Changes
1 Revision history for Package-Stash
2
3 {{$NEXT}}
4       - bring the behavior of has_symbol for nonexistant scalars into line with
5         the xs version
6       - invalid package names (for instance, Foo:Bar) are not allowed
7       - invalid stash entry names (anything containing ::) are not allowed
8
9 0.31  2011-08-08
10       - fix ->add_symbol('$foo', qr/sdlfk/) on 5.12+
11       - fix ->add_symbol('$foo', \v1.2.3) on 5.10+
12
13 0.30  2011-07-21
14       - fix compiler detection in Makefile.PL (ribasushi)
15
16 0.29  2011-04-06
17       - no, *really* skip the package-stash-conflict script
18
19 0.28  2011-03-29
20       - META.json fixes (mst)
21
22 0.27  2011-03-27
23       - also skip the package-stash-conflicts script (Father Chrysostomos)
24
25 0.26  2011-03-04
26       - make the namespace cache lazy and weak, in case the stash is deleted
27       - but, this doesn't work on 5.8, so disable the namespace caching
28         entirely there
29
30 0.25  2011-01-25
31       - make the leak tests author-only, since some smokers run release tests
32
33 0.24  2011-01-17
34       - oops, i did need the Test::Requires dep
35
36 0.23  2011-01-11
37       - lower perl prereq to 5.8.1 (ribasushi)
38       - make the leak tests release-only, since they keep randomly failing on
39         platforms i don't have access to. people are encouraged to submit
40         patches for these if they are affected.
41
42 0.22  2011-01-05
43       - bump ::XS dep again
44
45 0.21  2011-01-05
46       - bump Package::Stash::XS dep, since a bug was fixed there
47
48 0.20  2011-01-03
49       - one more fix for the Conflicts plugin
50
51 0.19  2011-01-03
52       - stop manually inserting conflict checking into Makefile.PL since we're
53         using the dzil Conflicts plugin now
54
55 0.18  2011-01-03
56       - non-trial release
57
58 0.17-TRIAL  2011-01-03
59       - use Dist::Zilla::Plugin::Conflicts rather than doing it by hand
60       - silence deprecation warnings for the method renaming for now
61
62 0.16-TRIAL  2010-12-31
63       - use Dist::CheckConflicts
64
65 0.15-TRIAL  2010-11-16
66       - split the XS conversion out to its own dist (Package-Stash-XS), and
67         convert Package::Stash into a module which loads either the XS or pure
68         perl implementation, depending on what's available
69
70 0.14-TRIAL  2010-11-14
71       - complete rewrite in C, for speed (this includes the vivification
72         changes from earlier). should be entirely backwards compatible
73         otherwise (in terms of documented api anyway).
74
75       - methods were renamed for brevity: s/_package//
76
77 0.13  2010-10-31
78       - revert the vivification changes for now, to get an actual release out
79         with Test::Fatal
80
81 0.12-TRIAL  2010-10-27
82       - actually include the conflict stuff in the release (bah)
83
84 0.11-TRIAL  2010-10-27
85       - conflict on mx-role-withoverloading too
86
87 0.10-TRIAL  2010-10-27
88       - only do the weird ISA special-casing on perl versions where it's broken
89
90 0.09-TRIAL  2010-10-27
91       - clean up the vivication code a lot, make it behave more sanely
92       - use Test::Fatal instead of Test::Exception (Justin Hunter)
93
94 0.08  2010-09-18
95       - oops, accidentally included some experimental changes in that last
96         release, that break things
97
98 0.07  2010-09-18
99       - non-dev release
100
101 0.06-TRIAL  2010-08-26
102       - re-enable the caching of the stash, since I can't reproduce the bug
103         at all
104
105 0.05  2010-06-15
106       - bump Test::More requirement for done_testing
107
108       - update packaging stuff
109
110 0.04  2010-06-13
111       - get_package_symbol now doesn't autovivify stash entries. A new method
112         get_or_add_package_symbol can now be used for that behavior.
113
114       - Update %DB::sub on add_package_symbol (Tim Bunce).
115
116 0.03  2010-05-14
117       - Rename from Stash::Manip to Package::Stash
118
119 0.02  2010-05-13
120       - Need to dep on Test::Exception
121
122 0.01  2010-05-12
123       - Initial release