-
Notifications
You must be signed in to change notification settings - Fork 256
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
release: bump version to 2.1.0 #834
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
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 <[email protected]>
522c800
to
196c9d5
Compare
TODO
add changelog entry for PEP 735Added
poetry
instance (#319).has_upper_bound method
toVersionConstraint
(#833).Changed
extra
markers (#818).python_version
markers (#826).Fixed
__pycache__
directory and*.pyc
files were includes in sdists and wheels (#835).Summary by Sourcery
Bump version to 2.1.0.
New Features:
AtomicMultiMarker
andAtomicMarkerUnion
for extra markers.