release_policy.rst 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. .. _doc_release_policy:
  2. Godot release policy
  3. ====================
  4. .. important::
  5. The ``3.2`` branch is no longer supported, and therefore its documentation
  6. cannot be kept up-to-date with latest changes in the Godot ecosystem.
  7. The overview of supported releases has therefore been removed from this
  8. page, please consult the `stable branch <https://docs.godotengine.org/en/stable/about/release_policy.html>`__
  9. for up-to-date information.
  10. Godot's release policy is in constant evolution. What is described below is
  11. intended to give a general idea of what to expect, but what will actually
  12. happen depends on the choices of core contributors, and the needs of the
  13. community at a given time.
  14. Godot versioning
  15. ----------------
  16. Godot loosely follows `Semantic Versioning <https://semver.org/>`__ with a
  17. ``major.minor.patch`` versioning system, albeit with an interpretation of each
  18. term adapted to the complexity of a game engine:
  19. - The ``major`` version is incremented when major compatibility breakages happen
  20. which imply significant porting work to move projects from one major version
  21. to another.
  22. For example, porting Godot projects from Godot 2.1 to Godot 3.0 required
  23. running the project through a conversion tool, and then performing a number
  24. of further adjustments manually for what the tool could not do automatically.
  25. - The ``minor`` version is incremented for feature releases which do not break
  26. compatibility in a major way. Minor compatibility breakage in very specific
  27. areas *may* happen in minor versions, but the vast majority of projects
  28. should not be affected or require significant porting work.
  29. The reason for this is that as a game engine, Godot covers many areas such
  30. as rendering, physics, scripting, etc., and fixing bugs or implementing new
  31. features in a given area may sometimes require changing the behavior of a
  32. feature, or modifying the interface of a given class, even if the rest of
  33. the engine API remains backwards compatible.
  34. .. tip::
  35. Upgrading to a new minor version is therefore recommended for all users,
  36. but some testing is necessary to ensure that your project still behaves as
  37. expected in a new minor version.
  38. - The ``patch`` version is incremented for maintenance releases which focus on
  39. fixing bugs and security issues, implementing new requirements for platform
  40. support, and backporting safe usability enhancements. Patch releases are
  41. backwards compatible.
  42. Patch versions may include minor new features which do not impact the
  43. existing API, and thus have no risk of impacting existing projects.
  44. .. tip::
  45. Updating to new patch versions is therefore considered safe and strongly
  46. recommended to all users of a given stable branch.
  47. We call ``major.minor`` combinations *stable branches*. Each stable branch
  48. starts with a ``major.minor`` release (without the ``0`` for ``patch``) and is
  49. further developed for maintenance releases in a Git branch of the same name
  50. (for example patch updates for the 3.3 stable branch are developed in the
  51. ``3.3`` Git branch).
  52. .. note::
  53. As mentioned in the introduction, Godot's release policy is evolving, and
  54. earlier Godot releases may not have followed the above rules to the letter.
  55. In particular, the 3.2 stable branch received a number of new features in
  56. 3.2.2 which would have warranted a ``minor`` version increment.
  57. Release support timeline
  58. ------------------------
  59. Stable branches are supported *at minimum* until the next stable branch is
  60. released and has received its first patch update. In practice, we support
  61. stable branches on a *best effort* basis for as long as they have active users
  62. who need maintenance updates.
  63. Whenever a new major version is released, we make the previous stable branch a
  64. long-term supported release, and do our best to provide fixes for issues
  65. encountered by users of that branch who cannot port complex projects to the new
  66. major version.