From 3c85b6fc6a1b4cbfe8e3d927668f6b1f43d6c069 Mon Sep 17 00:00:00 2001 From: Konstantin Babushkin Date: Tue, 12 Dec 2023 14:30:47 +0100 Subject: [PATCH] Fix documentation (#373) * clarify versioning * change documentation copyright --- README.md | 36 ++++++++++++------------------------ doc/conf.py | 2 +- 2 files changed, 13 insertions(+), 25 deletions(-) diff --git a/README.md b/README.md index 263eea213..4dea18a4e 100644 --- a/README.md +++ b/README.md @@ -22,35 +22,23 @@ OpenStack services, and versions of services, are supported. * [Contributing guide](/CONTRIBUTING.md) * [Code of Conduct](/CODE_OF_CONDUCT.md) - -## We need your help :smiley: - -We invest a large amount of work to ensure this SDK works with many OpenStack distributions via running end-to-end -integration tests with a real cluster. - -If you or your organization are in a position that can help us access popular distributions as listed below, do reach -out by open an issue in github. - -| Distribution | | -|------------------------------------|-------------------------| -|OpenStack RDO
MicroStack Openstack | Sponsored by [![Ai.net](https://i.imgur.com/wsFRFuX.png)](https://www.ai.net/) | -|Red Hat OpenStack | Need sponsor! | -|OVH OpenStack | Need sponsor! | -|SUSE OpenStack | Need sponsor! | -|RackSpace OpenStack | Need sponsor! | - ## Join the community - Report an issue: https://github.com/php-opencloud/openstack/issues -## Version Guidance +## Versioning + +Openstack SDK follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +Updating between minor versions will not require changes to PHP code or configuration +and cause no breaking behavioural changes for consumers. -| Version | Status | PHP Version | Support until | -| --------- | --------------------------- | ---------------- | ----------------------- | -| `^3.2` | Latest | `>=7.2.5, >=8.0` | Current | -| `^3.1` | Latest | `>=7.2.5` | Current | -| `^3.0` | Bug fixed only | `>=7.0` | Oct 2020 | -| `^2.0` | End of life | `>=7.0,<7.2` | March 2018 | +| Version | Status | PHP Version | Support until | +| --------- |-------------| ---------------- | ----------------------- | +| `^3.2` | Latest | `>=7.2.5, >=8.0` | Current | +| `^3.1` | Latest | `>=7.2.5` | Current | +| `^3.0` | End of life | `>=7.0` | Oct 2020 | +| `^2.0` | End of life | `>=7.0,<7.2` | March 2018 | ## Upgrade from 2.x to 3.x diff --git a/doc/conf.py b/doc/conf.py index 9394ea7d1..917c7d00c 100755 --- a/doc/conf.py +++ b/doc/conf.py @@ -27,7 +27,7 @@ source_suffix = '.rst' master_doc = 'index' project = u'php-opencloud' -copyright = u'2015, Jamie Hannaford' +copyright = u'2015-2023, PHP OpenCloud & contributors' version = '1.12' release = '1.12.1' exclude_patterns = ['_build']