s/toolchain/tool chain/ for spelling test
[gitmo/Moose.git] / lib / Moose / Manual / Support.pod
CommitLineData
eda0fb99 1=pod
2
3=head1 NAME
4
5Moose::Manual::Support - Policies regarding support, releases, and
6compatibility.
7
995b7d56 8=head1 SUPPORT POLICY
9
a0214906 10There are two principles to Moose's policy of supported behavior.
995b7d56 11
64936d78 12=over 4
13
14=item 1.
15
16Moose favors correctness over everything.
17
18=item 2.
19
20Moose supports documented and tested behavior, not accidental behavior or side
21effects.
22
23=back
995b7d56 24
a0214906 25If a behavior has never been documented or tested, the behavior is
26I<officially> undefined. Relying upon undocumented and untested behavior is
27done at your own risk.
995b7d56 28
a0214906 29If a behavior is documented or tested but found to be incorrect later, the
64936d78 30behavior will go through a deprecation period. During the deprecation period,
31use of that feature will cause a warning. Eventually, the deprecated feature
32will be removed.
995b7d56 33
eda0fb99 34=head1 RELEASE SCHEDULE
35
759dfceb 36Moose is on a system of quarterly major releases, with minor releases as
37needed between major releases. A minor release is defined as one that makes
38every attempt to preserve backwards compatibility. Currently this means that
39we did not introduce any new dependency conflicts, and that we did not make
40any changes to documented, tested behavior. A minor release can include new
41features and bug fixes.
d1e4fecf 42
64936d78 43Major releases may be backwards incompatible. Moose prioritizes
44correctness over backwards compatibility or performance; see the L<Deprecation
45Policy> to understand how backwards incompatible changes are announced.
d1e4fecf 46
a0214906 47Before a major release, a series of development releases will be made so that
48users can test the upcoming major release before it is distributed to CPAN. It
49is in the best interests of everyone involved if these releases are tested as
50widely as possible.
eda0fb99 51
52=head1 DEPRECATION POLICY
53
54Moose has always prioritized correctness over performance and backwards
79dce67a 55compatibility.
eda0fb99 56
64936d78 57Major deprecations or API changes are documented in the Changes file as well
58as in L<Moose::Manual::Delta>. The Moose developers will also make an effort
59to warn users of upcoming deprecations and breakage through the Moose blog
60(http://blog.moose.perl.org).
eda0fb99 61
45d92036 62Deprecated APIs will be preserved for at least one year I<after the major
63release which deprecates that API>. Deprecated APIs will only be removed in a
64major release.
eda0fb99 65
64936d78 66Moose will also warn during installation if the version of Moose being
67installed will break an installed dependency. Unfortunately, due to the nature
eda0fb99 68of the Perl install process these warnings may be easy to miss.
69
70=head1 BACKWARDS COMPATIBILITY
71
72We try to ensure compatibility by having a extensive test suite (last
73count just over around 5123 tests), as well as testing a number of
ccc47a38 74packages (currently just under 100 packages) that depend on Moose before
eda0fb99 75any release.
76
77The current list of downstream dependencies that are tested is in
78C<xt/author/test-my-dependents.t>.
79
80=head1 VERSION NUMBERS
81
64936d78 82Moose version numbers consist of three parts, in the form X.YYZZ. The X is the
83"special magic number" that only gets changed for really big changes. Think of
84this as being like the "5" in Perl 5.12.1.
85
86The YY portion is the major version number. Moose uses even numbers for stable
87releases, and odd numbers for trial releases. The ZZ is the minor version, and
88it simply increases monotonically. It starts at "00" each time a new major
89version is released.
90
91Semantically, this means that any two releases which share a major version
92should be API-compatible with each other. In other words, 2.0200, 2.0201, and
932.0274 are all API-compatible.
eda0fb99 94
64936d78 95Prior to version 2.0, Moose version numbers were monotonically incrementing
96two decimal values (0.01, 0.02, ... 1.11, 1.12, etc.).
3d5e4dc0 97
eda0fb99 98Moose was declared production ready at version 0.18 (via L<<
99http://www.perlmonks.org/?node_id=608144 >>).
100
101=head1 CONTRIBUTING
102
103Moose has an open contribution policy. Anybody is welcome to submit a
204f629c 104patch. Please see L<Moose::Manual::Contributing> for more details.
eda0fb99 105
79dce67a 106=cut