use ExtUtils::HasCompiler for compiler detection
[p5sagit/strictures.git] / Changes
1 Release history for strictures
2
3   - use ExtUtils::HasCompiler to detect compiler rather than ExtUtils::CBuilder
4
5 2.000001 - 2015-06-28
6   - update for perl 5.22 warning categories
7   - avoid using goto &UNIVERSAL::VERSION on perl 5.8, since it segfaults some
8     builds
9   - also detect development directories based on .bzr directory
10   - various test cleanups
11
12 2.000000 - 2015-02-26
13   * Incompatible Changes
14     - strictures 2 fatalizes only a subset of warnings.  Some warning
15       categories are not safe to catch, or just inappropriate to have fatal.
16       Existing code looking like 'use strictures 1;' will continue to get the
17       old behavior of fatalizing all errors.  The new behavior will take effect
18       when no version or version 2 is specified.
19
20 1.005006 - 2015-01-30
21   - fix extra checks triggering on paths starting with t, xt, lib, or blib,
22     rather than only triggering on those directories.
23   - avoid stat checks for VCS directories until we are in an appropriately
24     named file
25   - various cleanups in test files
26
27 1.005005 - 2014-08-16
28   - include minimum perl version in metadata
29
30 1.005004 - 2014-03-06
31   - make sure meta files list extra modules as recommendations, not requirements
32
33 1.005003 - 2014-02-12
34   - added support for PUREPERL_ONLY (rt#91407)
35   - fixed using strictures->VERSION to query the version (rt#92965)
36
37 1.005002 - 2013-12-10
38   - extra prereqs will be listed as hard prerequisites if a compiler is
39     available
40
41 1.005001 - 2013-11-07
42   - fix skip on old perl on test script
43
44 1.005000 - 2013-11-05
45   - detect mercurial when checking for development trees
46   - avoid using constant.pm to save a bit of memory on older perls
47   - update to v2 metadata
48
49 1.004004 - 2012-11-12
50   - fix crash in 1.004003 due to qw() list being readonly
51
52 1.004003 - 2012-11-10
53   - check only once for presence of extra testing prereqs
54   - explicitly specify no dynamic_config in META
55
56 1.004002 - 2012-09-08
57   - add better rationale for the extra testing heuristic
58
59 1.004001 - 2012-07-12
60   - test-specific strictures now enabled during 'dzil test'
61
62 1.004000 - 2012-07-12
63   - switch to testing calling file to avoid firing on dependencies
64
65 1.003001 - 2012-04-08
66   - fix test to handle defatalization
67
68 1.003000 - 2012-04-07
69   - try and run for any checkout t/ now we don't blow up the process
70   - defatalize lack of extra testing modules
71   - disable extra tests on perls <= 5.008003, things do not work there as
72     expected
73
74 1.002002 - 2011-02-25
75   - only try and mkdir the .git if it doesn't already exist so repeated
76     test runs don't explode
77
78 1.002001 - 2011-02-25
79   - switch .svn to .git in smells-of-vcs test and create it ourselves
80     to ease importing of this dist into subversion repositories
81
82 1.002000 - 2011-02-16
83   - add multidimensional and bareword::filehandles in author mode
84
85 1.1.1 - 2010-12-05
86   - disable uninitialized warnings before calling ->SUPER::VERSION
87
88 1.1.0 - 2010-11-22
89   - enable extra testing only if .git or .svn present to keep requirement
90     for extra modules author-side
91
92 1.0.0 - 2010-07-18
93   - initial release