-
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
base: main
Are you sure you want to change the base?
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
|
fix(cli): sort global opts prior to io config
94bddcd
to
97ed8bd
Compare
TODO
Added
AtomicMultiMarker
andAtomicMarkerUnion
for extra markers (#818).Fixed
Summary by Sourcery
Bump version to 2.1.0.
New Features:
AtomicMultiMarker
andAtomicMarkerUnion
for extra markers.