diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-05-30 11:44:55 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-05-30 11:44:55 -0300 |
commit | c36c7fc747dfc723bcee647103dcff0be885234f (patch) | |
tree | 787f0b9895de6181f0732bc06a90b55edabfba29 /guides | |
parent | 0cabddd8c7e178d4067daeb43eacc959989bb8a7 (diff) | |
download | rails-c36c7fc747dfc723bcee647103dcff0be885234f.tar.gz rails-c36c7fc747dfc723bcee647103dcff0be885234f.tar.bz2 rails-c36c7fc747dfc723bcee647103dcff0be885234f.zip |
Change the version schema to reflect how deprecations are handled
[ci skip]
We only introduce new deprecations at Minor releases.
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/maintenance_policy.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/source/maintenance_policy.md b/guides/source/maintenance_policy.md index 05c831ac0d..6f8584b3b7 100644 --- a/guides/source/maintenance_policy.md +++ b/guides/source/maintenance_policy.md @@ -12,13 +12,13 @@ Rails follows a shifted version of [semver](http://semver.org/): **Patch `Z`** Only bug fixes, no API changes, no new features. -Except as necessary for security fixes or deprecations. +Except as necessary for security fixes. **Minor `Y`** New features, may contain API changes (Serve as major versions of Semver). -Breaking changes are paired with deprecation notices in patch level release of -the last minor version level. +Breaking changes are paired with deprecation notices in the previous minor +or major release. **Major `X`** |