Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Release Notes

## 2.95.2

This release upgrades the minimum version required of the `pexrc` tool to 0.12.5 to satisfy `--rc`
requests when building PEXes. This new version floor pulls in a fix for non-normalized project name
handling when reading wheel metadata. See: https://github.com/pex-tool/pex.rc/issues/103.

* Upgrade `pexrc` to 0.12.5. (#3178)

## 2.95.1

This release fixes a bug in the `--venv-repository` resolver that ignored extras when determining if
Expand Down
2 changes: 1 addition & 1 deletion pex/rc/pexrc.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@


PEXRC_RELEASES_URL = "https://github.com/pex-tool/pex.rc/releases"
MIN_PEXRC_VERSION = Version("0.12.3")
MIN_PEXRC_VERSION = Version("0.12.5")
PEXRC_REQUIREMENT = SpecifierSet("~={min_version}".format(min_version=MIN_PEXRC_VERSION))


Expand Down
2 changes: 1 addition & 1 deletion pex/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2015 Pex project contributors.
# Licensed under the Apache License, Version 2.0 (see LICENSE).

__version__ = "2.95.1"
__version__ = "2.95.2"