bump version for release
[p5sagit/local-lib.git] / Changes
1 Revision history for local::lib
2
3 1.008011 2013-07-26
4         - skip CPAN workaround if running via cpanminus  (miyagawa, RT#85731)
5
6 1.008010 2013-05-26
7         - Fix a split on undefined value warning (David Golden -- see
8           https://github.com/gugod/App-perlbrew/issues/305)
9
10 1.008009 2013-02-24
11         - Remove Carp::Always dep
12
13 1.008008 2013-02-24
14         - Fix putting arch path in PERL5LIB
15         - Refactor Win32 path handling out of ensure_dir_structure_for()
16         - Fix activate_paths when PERL_LOCAL_LIB_ROOT starts with :
17         - Fix ~/perl5/bin missing in $PATH
18
19 1.008007 2013-02-17
20         - Back to 1.008004 with Carp fix since subsequent releases were botched
21         - Avoid issue where PERL5LIB Carp is older than local::lib one
22
23 1.008004 2011-02-24
24
25         - Fix stackable tests on win32 by canonicalizing the path ahead of time
26
27 1.008003 2011-02-23
28
29         - Fix tests with stacking l::ls.
30
31 1.008002 2011-02-23
32
33         - Add local::lib stacking support.
34         - Add activation/deactivation support.
35
36 1.008001 2011-01-09
37
38         - Bootstrap Module::Build just like ExtUtils::MakeMaker
39
40 1.008000 2011-01-05
41
42         - Remove redundant prereqs now that Module::Build 0.36 is required
43         - Makefile.PL avoids CPAN client configuration when not required
44         - print_environment_vars_for() refactored with separate function
45           environment_vars_string_for()
46         - PERL_LOCAL_LIB_ROOT environment is added to disambiguate when
47           PERL_MM_OPT, etc. was set by local::lib or other means
48
49 1.007000 2010-12-09
50         - Chase the Module::Build version which supports PERL_MB_OPT. Thanks to
51         miyagawa for pointing this out.
52
53 1.006009 2010-12-09
54
55         - Split up method guess_shelltype from parts of print_environment_vars_for
56         - Updated documentation about change of use with .modulebuildrc
57
58 1.006008 2010-11-17
59
60         - Finally move to PERL_MB_OPT rather than using .modulebuildrc.
61
62 1.006007 2010-08-12
63
64         - Fixing stuff so that search.cpan.org displays right
65         - Documented one method in all languages
66
67 1.006006 2010-08-12
68
69         - Added portuguese translation
70         - Several minor fixes in the documentation
71         - Changed methods look in documentation
72
73 1.006005 2010-07-13
74
75         - Added support informations (also for german)
76         - Fixed newline in german translation from DOS2UNIX
77
78 1.006004 2010-06-10
79
80         - I am stupid.
81
82 1.006003 2010-06-10
83
84         - Added german translation right
85
86 1.006002 2010-06-10
87
88         - Hotfix for a search.cpan.org "Bug"
89
90 1.006001 2010-06-10
91
92         - Added german translation
93         - Enhanced some parts of english documentation
94         - doc patch for win32 from run4flat
95         - reverse the perl/arch paths in PERL5LIB
96
97 1.006000 2010-03-31
98
99         - Create lib::core::only that provides the "set @INC to core dirs
100           only" functionality that was the only part of --self-contained that
101           ever worked usefully.
102         - Delete broken --self-contained flag from core
103
104 1.005001 2010-03-10
105
106         - I am an idiot.
107
108 1.005000 2010-03-10
109
110         - More robust handling of running new toolchains on older perls. This
111           should sort out issues users have with bootstrapping on e.g. Solaris
112           and other traditional Unices. In addition, try to find a GNU tar
113           capable of dealing with @LongLink so bootstrapping doesn't fail.
114
115         - Warnings for missing PATH/PERL5LIB (as when not running interactively)
116           silenced by a patch from Marco Emilio Poleggi.
117
118         - Start of better docs for C<--self-contained> thanks to
119           markstos@cpan.org.
120
121 1.004009 2009-11-07
122
123         - Fix warning if your $ENV{PERL5LIB} is undef
124
125         - Doc improvement from kgish/#perl-help@irc.perl.org
126
127         - t0m and chrisa on #local-lib@irc.perl.org pointed out a PERL5LIB ordering issue
128           with C<--self-contained>.
129
130 1.004008 2009-10-13
131
132         - Clarify re-reading the shell config file after writing to it.
133
134         - Clarify copyright and licensing for packaging by vendors.
135
136 1.004007 2009-09-02
137
138         - Ensure that $ENV{PERL5LIB} and @INC are always de-duped, stopping
139           them from growing if local::lib is invoked multiple times for the
140           same path. (t0m)
141
142         - Doc improvements by kurisuto@irc.perl.org/#catalyst.
143
144         - Cleaned up indentation of code lines in the POD. Everything should be
145           nice and flush, now.
146
147 1.004006 2009-08-25
148         - Fix parsing of --self-contained and local lib directory. It's now
149           possible to specify flags and the directory in any order. Also made
150           adding future flags easier in the future. Thanks to
151           frew@irc.perl.org/#catalyst for pointing out that --self-contained
152           wouldn't work without a directory.
153
154 1.004005 2009-08-23
155         - Add the --no-manpages option to bootstraping to tell EUMM / MB to not
156           generate manpages from POD. Thanks to RKITOVER for providing the
157           necessary values for CPAN.pm's configuration.
158
159 1.004004 2009-08-05
160
161         - Add dependency on Extutils::Install 1.43 and install in --bootstrap
162           otherwise we fail to build with latest MakeMaker on OpenSolaris (t0m)
163
164         - Fix Win32 / Cygwin detection (emazep).
165
166 1.004003 2009-16-16
167         - Stop Makefile.PL exploding if your CPAN is too old to have
168           CPAN::HandleConfig. Needed when installing local::lib via CPAN
169           using an old CPAN version (t0m)
170         - Fix warning from Makefile.PL about ExtUtils::MakeMaker::prompt (t0m)
171         - Set PERL5LIB back to calculated @INC with --self-contained, to stop
172           invoking other perl scripts from losing the local::lib if they
173           mangle @INC from $ENV{PERL5LIB}, and fix install of 'difficult'
174           modules with such as Test::Deep (t0m)
175
176 1.004002 2009-06-15
177         - Fixed up INC untaint procedure to skip/ignore CODE, ARRAY,
178           blessed entries. (grink)
179         - Include test in xt/ for the above
180
181         - Put PERL5LIB first, so it'll be favored over privlibexp and
182           archlibexp when self contained.
183         - Automatically untaint @INC (t0m)
184         - Prevent @INC from growing when you have multiple scripts using
185           --self-contained called from inside one another. (grink by way of t0m)
186         - eg/scripted_install.pl now no longer requires TARGET, but still
187           respects it. (confound)
188
189 1.004001 2009-05-21
190         - Clean up CPAN.pm's environment variable the same way we do for
191           CPANPLUS. Add an example program showing local::lib employed
192           programmatically (confound).
193
194         - Add the beginnings of a troubleshooting section (pattern).
195
196 1.004000 2009-05-14
197         - Don't allow dangerous settings for CPAN.pm that affect where CPAN
198           installs stuff, as this conflicts with what we're trying to do.
199
200         - Make sure that our Makefile is written to the correct directory when
201           bootstrapping (confound).
202
203 1.003004 2009-05-12
204         - Additional documentation and examples concerning having multiple
205           local::lib enviornments (amiri)
206
207         - Some install tests courtesy of Hans Dieter Pearcey <hdp@cpan.org>.
208           Thanks!
209
210 1.003003 2009-04-09
211         - Expose the internals per RT #36846.
212         - Fix the MANIFEST up a bit.
213
214 1.003002 2009-02-25
215         - Add a doc patch from Torsten Raudssus <torsten@raudssus.de> that
216           clarifies how to specify a directory other than ~/perl5.
217
218 1.003001 2009-01-14
219         - Properly bail if given fancy dashes obtained by copy-pasting from a
220           UTF8-happy POD formatter. This will bail in both the Makefile.PL and
221           in local::lib::import().
222
223 1.003000 2009-01-13
224         - Add the --self-contained flag from Mark Stosberg, which also contains
225           a doc patch warning about the dangers of UNINST=1. Thanks, Mark!
226
227 1.002000 2008-08-06
228         - make CPAN config reinit non-prompting but still robust
229         - make bootstrap auto-init CPAN config and set USE_DEFAULT for deps
230
231 1.001000 2007-09-19
232         - refactored shell command generation
233         - implemented C shell command generation based on this (checks $SHELL}
234         - improved docs
235         - modified Makefile.PL to install an up-to-date CPAN.pm if needed
236
237 1.000000 2007-09-13
238         - initial release