From 41c59fe2812500925034667f4be827aa9fa8fa24 Mon Sep 17 00:00:00 2001 From: John Sirois Date: Mon, 28 Oct 2024 23:34:15 -0700 Subject: [PATCH] Prepare the 2.23.0 release. --- CHANGES.md | 12 ++++++++++++ pex/version.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 4bb7266d2..1a5c9ca17 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,17 @@ # Release Notes +## 2.23.0 + +This release adds support for drawing requirements from +[PEP-735][PEP-735] dependency groups when creating PEXes or lock files. +Groups are requested via `--group @` or just +`--group ` if the project directory is the current working +directory. + +* Add support for PEP-735 dependency groups. (#2584) + +[PEP-735]: https://peps.python.org/pep-0735/ + ## 2.22.0 This release adds support for `--pip-version 24.3.1`. diff --git a/pex/version.py b/pex/version.py index 1d2fc6ac6..d82a4583f 100644 --- a/pex/version.py +++ b/pex/version.py @@ -1,4 +1,4 @@ # Copyright 2015 Pex project contributors. # Licensed under the Apache License, Version 2.0 (see LICENSE). -__version__ = "2.22.0" +__version__ = "2.23.0"