-
-
Notifications
You must be signed in to change notification settings - Fork 31
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
Add --version-range option #102
Merged
Merged
Conversation
This file contains 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
taiki-e
added
the
C-enhancement
Category: A new feature or an improvement for an existing one
label
Dec 4, 2020
taiki-e
force-pushed
the
version-range
branch
11 times, most recently
from
December 4, 2020 07:46
1475e7c
to
f8530b0
Compare
This comment has been minimized.
This comment has been minimized.
taiki-e
force-pushed
the
version-range
branch
4 times, most recently
from
December 4, 2020 12:48
d8f51d6
to
3a558a9
Compare
Merged
bors bot
added a commit
that referenced
this pull request
Dec 4, 2020
103: Minor cleanup r=taiki-e a=taiki-e Split from #102. Co-authored-by: Taiki Endo <[email protected]>
taiki-e
force-pushed
the
version-range
branch
2 times, most recently
from
December 4, 2020 13:11
b79b5fa
to
f156de7
Compare
taiki-e
force-pushed
the
version-range
branch
6 times, most recently
from
December 5, 2020 12:22
03b993c
to
c7f6d0e
Compare
taiki-e
force-pushed
the
version-range
branch
from
December 5, 2020 12:23
c7f6d0e
to
c224977
Compare
taiki-e
force-pushed
the
version-range
branch
4 times, most recently
from
December 5, 2020 13:15
e1564ac
to
02fae8b
Compare
taiki-e
force-pushed
the
version-range
branch
from
December 5, 2020 13:17
02fae8b
to
0658021
Compare
cargo-hack/.github/workflows/ci.yml Lines 57 to 65 in 0658021
|
bors r+ |
Build succeeded: |
This was referenced Dec 6, 2020
bors bot
added a commit
to taiki-e/auto_enums
that referenced
this pull request
Dec 6, 2020
120: ci: make sure can compile with all versions on or after MSRV r=taiki-e a=taiki-e taiki-e/cargo-hack#102 Co-authored-by: Taiki Endo <[email protected]>
bors bot
added a commit
to taiki-e/pin-project
that referenced
this pull request
Dec 6, 2020
306: ci: make sure can compile with all versions on or after MSRV r=taiki-e a=taiki-e taiki-e/cargo-hack#102 Co-authored-by: Taiki Endo <[email protected]>
taiki-e
removed
the
C-enhancement
Category: A new feature or an improvement for an existing one
label
Jan 6, 2021
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.
Closes #93
Note: Ranges are always inclusive ranges. (
start..=end
)If the given range is unclosed, the latest stable compiler is treated as the upper bound.
You can also specify the version interval by using
--version-step
. ((start..=end).step_by(step)
)