diff mbox series

[yocto-autobuilder-helper] scripts/release-parser.py: fix bitbake dev branch 2.19 -> 2.20

Message ID 20260917-fix-bitbake-dev-version-v1-1-f3b9f6c737bc@bootlin.com
State New
Headers show
Series [yocto-autobuilder-helper] scripts/release-parser.py: fix bitbake dev branch 2.19 -> 2.20 | expand

Commit Message

Antonin Godard Sept. 17, 2026, 10:28 a.m. UTC
The next version of BitBake will be 2.20, not 2.19, we always hop two
by two. Fix the version, which also fixes the following yocto-docs build
error:

  intersphinx inventory
  'https://docs.yoctoproject.org/bitbake/2.19/objects.inv' not fetchable
  due to <class 'requests.exceptions.HTTPError'>: 404 Client Error: Not
  Found for url: https://docs.yoctoproject.org/bitbake/2.19/objects.inv

Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
---
 scripts/release-parser.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


---
base-commit: e5226a56cab986ce0a6940a35aa30ddf1dadd07a
change-id: 20260917-fix-bitbake-dev-version-36a9d43c2b34
diff mbox series

Patch

diff --git a/scripts/release-parser.py b/scripts/release-parser.py
index 4f928b3..c147d1d 100755
--- a/scripts/release-parser.py
+++ b/scripts/release-parser.py
@@ -29,7 +29,7 @@  CURRENT_ACTIVE_DEV_CODENAME = "Blacksail"
 CURRENT_ACTIVE_DEV_VERSION = "6.1"
 CURRENT_ACTIVE_DEV_MAINTAINER_NAME = "Richard Purdie"
 CURRENT_ACTIVE_DEV_MAINTAINER_EMAIL = "richard.purdie@linuxfoundation.org"
-CURRENT_ACTIVE_DEV_BITBAKE_MAPPING = "2.19"
+CURRENT_ACTIVE_DEV_BITBAKE_MAPPING = "2.20"
 CURRENT_STABLE_BRANCH = "6.0"
 CURRENT_STABLE_MAINTAINER_NAME = "Yoann Congal"
 CURRENT_STABLE_MAINTAINER_EMAIL = "yoann.congal@smile.fr"