This is an automated email from the ASF dual-hosted git repository. fanningpj pushed a commit to branch version-support in repository https://gitbox.apache.org/repos/asf/pekko-site.git
commit 2d120c54860b5f079a885c143271d2c2de7106b0 Author: PJ Fanning <[email protected]> AuthorDate: Tue Dec 2 21:58:13 2025 +0100 version support --- src/main/paradox/index.md | 2 ++ src/main/paradox/version-support.md | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/src/main/paradox/index.md b/src/main/paradox/index.md index c38cddab..00fe83ca 100644 --- a/src/main/paradox/index.md +++ b/src/main/paradox/index.md @@ -6,6 +6,7 @@ material.custom.page-stylesheet: assets/stylesheets/home.css * [samples](samples.md) * [modules](modules.md) * [download](download.md) + * [version support](version-support.md) * [how-to-contribute](how-to-contribute.md) @@@ @@ -13,6 +14,7 @@ material.custom.page-stylesheet: assets/stylesheets/home.css * @ref:[Samples](samples.md) * @ref:[Modules](modules.md) * @ref:[Downloads](download.md) +* @ref:[Version Support](version-support.md) * @ref:[How to contribute](how-to-contribute.md) @@@ diff --git a/src/main/paradox/version-support.md b/src/main/paradox/version-support.md new file mode 100644 index 00000000..16fa91f4 --- /dev/null +++ b/src/main/paradox/version-support.md @@ -0,0 +1,32 @@ +# Version Support + +Apache Pekko uses [Semantic Versioning 2.0.0](https://semver.org/). + +Currently, the versions of the various Apache Pekko @ref:[Modules](modules.md) are fairly +closely synched up. This may not continue to be the case in future and we will endeavour to +keep this page up to date to try to describe what versions work with each other. + +## Version 2.0.x Milestones + +We are about the start releasing 2.0.0 milestone releases starting with the core Pekko +module and working through the modules that are most widely used. The milestone releases +are only for testing purposes and to facilitate library maintainers. They are not meant +to be used in production. + +## Version 1.x + +It is best to use the latest 1.x releases for all the Pekko modules out there. + +We will continue to do fix bugs and upgrade dependencies when they fix issues. Until +2.0.0 full release is ready, we may add some enhancements and they will appear in minor +releases. + +Once Pekko 2.0.0 full release is done, we will end active development in 1.x and only +important bug fixes including security fixes will appear in new 1.x releases. +Dependency upgrades will only be made for important bug fixes including security fixes. + +With 1.x, changes will normally only be made to the most recent 1.x release and won't +generally be backported to previous 1.x minor versions. + +We will announce an end of support date in due course. + --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
