- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 31
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
Comparing changes
Choose two branches to see what’s changed or to start a new pull request.
If you need to, you can also or
learn more about diff comparisons.
Open a pull request
Create a new pull request by comparing changes across two branches. If you need to, you can also .
Learn more about diff comparisons here.
base repository: dtolnay/prettyplease
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.2.20
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: dtolnay/prettyplease
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.2.21
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 11 commits
- 6 files changed
- 1 contributor
Commits on Jun 6, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 22da86d - Browse repository at this point
Copy the full SHA 22da86dView commit details
Commits on Jun 24, 2024
-
Raise minimum supported compiler to 1.61
Required by syn 2.0.68.
Configuration menu - View commit details
-
Copy full SHA for 8f7bb3a - Browse repository at this point
Copy the full SHA 8f7bb3aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 060a8ad - Browse repository at this point
Copy the full SHA 060a8adView commit details -
Configuration menu - View commit details
-
Copy full SHA for 39a3f75 - Browse repository at this point
Copy the full SHA 39a3f75View commit details -
Merge pull request #76 from dtolnay/rustfmtbug
Work around rustfmt "rewriting static" bug
Configuration menu - View commit details
-
Copy full SHA for 93f2078 - Browse repository at this point
Copy the full SHA 93f2078View commit details
Commits on Aug 10, 2024
-
Resolve single_match_else pedantic clippy lint
warning: you seem to be trying to use `match` for destructuring a single pattern. Consider using `if let` --> src/path.rs:175:21 | 175 | let qself = match qself { | _____________________^ 176 | | Some(qself) => qself, 177 | | None => { 178 | | self.path(path, kind); 179 | | return; 180 | | } 181 | | }; | |_________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_match_else = note: `-W clippy::single-match-else` implied by `-W clippy::pedantic` = help: to override `-W clippy::pedantic` add `#[allow(clippy::single_match_else)]` help: try | 175 ~ let qself = if let Some(qself) = qself { qself } else { 176 + self.path(path, kind); 177 + return; 178 ~ }; |
Configuration menu - View commit details
-
Copy full SHA for 8584223 - Browse repository at this point
Copy the full SHA 8584223View commit details
Commits on Aug 24, 2024
-
Revert "Work around rustfmt 'rewriting static' bug"
This reverts commit 39a3f75.
Configuration menu - View commit details
-
Copy full SHA for cff71f3 - Browse repository at this point
Copy the full SHA cff71f3View commit details -
Merge pull request #78 from dtolnay/rustfmtbug
Revert "Work around rustfmt 'rewriting static' bug"
Configuration menu - View commit details
-
Copy full SHA for 53aac30 - Browse repository at this point
Copy the full SHA 53aac30View commit details -
Configuration menu - View commit details
-
Copy full SHA for d2881c3 - Browse repository at this point
Copy the full SHA d2881c3View commit details -
Merge pull request #79 from dtolnay/tailcall
Pretty-print tail calls (`become`)
Configuration menu - View commit details
-
Copy full SHA for 11c45ff - Browse repository at this point
Copy the full SHA 11c45ffView commit details -
Configuration menu - View commit details
-
Copy full SHA for ea2044e - Browse repository at this point
Copy the full SHA ea2044eView commit details
There are no files selected for viewing