release: bump version to 2.1.0#834
Merged
radoering merged 1 commit intopython-poetry:mainfrom Feb 15, 2025
Merged
Conversation
Reviewer's Guide by SourceryThis pull request bumps the version of poetry-core to 2.1.0 and includes several additions and fixes. The changes include updates to the changelog, pyproject.toml, and the init file to reflect the new version. Additions include passing local version labels to the build backend interface and adding support for atomic multi-markers. Fixes address issues related to inclusive ordering, invalid URI tokens, performance of marker intersection, missing license files, and optional dependencies in wheel metadata. Class diagram showing the addition of atomic marker supportclassDiagram
class AtomicMultiMarker {
+evaluate(environment)
}
class AtomicMarkerUnion {
+evaluate(environment)
}
class BaseMarker {
+evaluate(environment)
}
BaseMarker <|-- AtomicMultiMarker
BaseMarker <|-- AtomicMarkerUnion
note for AtomicMultiMarker "New marker type for handling
multiple conditions atomically"
note for AtomicMarkerUnion "New marker type for handling
union of atomic conditions"
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
94bddcd to
97ed8bd
Compare
97ed8bd to
5271dd6
Compare
Member
|
I added changelog entries for the performance improvements and all other changes that were merged in the meantime. |
5271dd6 to
522c800
Compare
Co-authored-by: Randy Döring <30527984+radoering@users.noreply.github.com>
522c800 to
196c9d5
Compare
radoering
approved these changes
Feb 15, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
TODO
add changelog entry for PEP 735Added
poetryinstance (#319).has_upper_bound methodtoVersionConstraint(#833).Changed
extramarkers (#818).python_versionmarkers (#826).Fixed
__pycache__directory and*.pycfiles were includes in sdists and wheels (#835).Summary by Sourcery
Bump version to 2.1.0.
New Features:
AtomicMultiMarkerandAtomicMarkerUnionfor extra markers.