-
Notifications
You must be signed in to change notification settings - Fork 33
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
Added workspace:
and resolution: fields
#1948
base: main
Are you sure you want to change the base?
Conversation
PR HealthBreaking changes ✔️
Changelog Entry ✔️
Changes to files need to be accounted for in their respective changelogs. Coverage ✔️
This check for test coverage is informational (issues shown here will not fail the PR). API leaks ✔️The following packages contain symbols visible in the public API, but not exported by the library. Export these symbols or remove them from your publicly visible API.
License Headers ✔️
All source files should start with a license header. Unrelated files missing license headers
|
Okay seems I did need to bump for the CI to pass -- done. Also, what are your thoughts on
|
Package publishing
Documentation at https://github.com/dart-lang/ecosystem/wiki/Publishing-automation. |
Tests? You added a changelog entry? swoon |
Mostly working tests, too! Should be good now |
great questions
These seem like just adding complexity. Would like to keep this simple.
Ditto. No clue where pub will go. Leaving it as a string for now is most simple. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Two things then I'll land it. Amazing. Thanks!
@@ -1,3 +1,7 @@ | |||
## 1.5.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
## 1.5.0 | |
## 1.5.0-wip |
@@ -1,5 +1,5 @@ | |||
name: pubspec_parse | |||
version: 1.4.0 | |||
version: 1.5.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
version: 1.5.0 | |
version: 1.5.0-wip |
Since we're not quite ready to publish.
Fixes #1814 by adding
Pubspec.workspace
(List<String>?
) andPubspec.resolution
(String?
). Didn't bump the changelog or version yet because I didn't want to conflict with #1946 (@kevmoo?), but I can do that once it's merged (or rebase this onto that branch).Does not check that
dart: ^3.6.0
, leaving that up to these lines in Pub.An omitted
resolution:
orworkspace
field is treated as null.Contribution guidelines:
dart format
.Note that many Dart repos have a weekly cadence for reviewing PRs - please allow for some latency before initial review feedback.