From 39d8f8521e6d517464070ca9c9606e25a14fdcb6 Mon Sep 17 00:00:00 2001
From: Rich Wareham <rjw57@cam.ac.uk>
Date: Mon, 13 Jan 2025 10:01:10 +0000
Subject: [PATCH] feat(mkdocs): bump poetry version used for building docs

The poetry export plugin now requires a later release of poetry. Bump
the default version.
---
 CHANGELOG.md      | 7 +++++++
 python-common.yml | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 385dd1f..bfe5ab3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
+## [6.5.0] - 2025-01-13
+
+### Changed
+
+- bumped default version of `poetry` used by mkdocs jobs to work around the
+  export plugin requiring a later version.
+
 ## [6.4.3] - 2024-12-13
 
 ### Fixed
diff --git a/python-common.yml b/python-common.yml
index 7d1caf8..7595536 100644
--- a/python-common.yml
+++ b/python-common.yml
@@ -6,7 +6,7 @@ variables:
   PYTHON_IMAGE: registry.gitlab.developers.cam.ac.uk/uis/devops/infra/dockerimages/python:$PYTHON_VERSION-alpine
 
   # Default poetry version to use
-  PYTHON_POETRY_VERSION: "1.8.3"
+  PYTHON_POETRY_VERSION: "2.0.1"
 
 # A default set of python versions to test. This is usually the most recent three released versions. Note that adding a
 # new version here also requires that we add a new version to the common docker image repository project.
-- 
GitLab