| Age | Commit message (Expand) | Author | Lines |
| 2023-09-01 | fix(std): Rename os_str_bytes to encoded_bytes | Ed Page | -17/+17 |
| 2023-08-14 | actually this doesn't even affect doctests. nice. | Ralf Jung | -12/+6 |
| 2023-08-14 | std: add some missing repr(transparent) | Ralf Jung | -0/+6 |
| 2023-06-27 | std: remove an allocation in `Path::with_extension` | João M. Bezerra | -3/+21 |
| 2023-05-13 | refactor: Remove bespoke from_os_str_bytes_unchecked | Ed Page | -20/+16 |
| 2023-05-13 | refactor: Remove redundant, private OsStr::bytes | Ed Page | -8/+8 |
| 2023-05-15 | Mark internal functions and traits unsafe | LegionMammal978 | -4/+7 |
| 2023-05-08 | Auto merge of #106621 - ozkanonur:enable-elided-lifetimes-for-doctests, r=Mar... | bors | -1/+1 |
| 2023-05-07 | enable `rust_2018_idioms` for doctests | ozkanonur | -1/+1 |
| 2023-05-01 | Rollup merge of #109540 - marcospb19:edit-Path-with_file_name-example, r=m-ou-se | Matthias Krüger | -5/+11 |
| 2023-04-28 | replace version placeholders | Pietro Albini | -2/+2 |
| 2023-04-26 | Rollup merge of #110266 - tgross35:try-exists-wording, r=jyn514 | jyn | -3/+5 |
| 2023-04-14 | edit docs of `PathBuf::set_file_name` | João M. Bezerra | -5/+11 |
| 2023-04-13 | Update documentation wording on path 'try_exists' functions | Trevor Gross | -3/+5 |
| 2023-04-12 | remove some unneeded imports | KaDiWa | -21/+21 |
| 2023-03-10 | Rollup merge of #105962 - zertosh:stabilize_path_as_mut_os_str, r=dtolnay | Matthias Krüger | -4/+2 |
| 2023-01-31 | Auto merge of #107297 - Mark-Simulacrum:bump-bootstrap, r=pietroalbini | bors | -2/+2 |
| 2023-01-31 | fix link in std::path::Path::display() | Lucius Hu | -0/+1 |
| 2023-01-25 | Set version placeholders to 1.68 | Mark Rousskov | -2/+2 |
| 2023-01-20 | add example of joining with a absolute path | Valdemar Erk | -0/+1 |
| 2023-01-20 | Add note about absolute paths to Path::join | Valdemar Erk | -0/+2 |
| 2023-01-14 | Remove various double spaces in source comments. | André Vennberg | -1/+1 |
| 2023-01-12 | Stop having unused lifetimes on some `impl`s | Scott McMurray | -29/+29 |
| 2023-01-08 | Rollup merge of #103104 - SUPERCILEX:sep-ref, r=dtolnay | Yuki Okushi | -1/+1 |
| 2023-01-02 | Rollup merge of #104298 - tbu-:pr_set_extension_caveats, r=m-ou-se | Michael Goulet | -3/+30 |
| 2022-12-31 | Rollup merge of #106280 - Ezrashaw:path-join-docs-better, r=thomcc | Matthias Krüger | -0/+3 |
| 2022-12-31 | Add notes and examples about non-intuitive `PathBuf::set_extension` behavior | Tobias Bucher | -3/+30 |
| 2022-12-30 | Replace libstd, libcore, liballoc in line comments. | jonathanCogan | -1/+1 |
| 2022-12-30 | docs: add link to `Path::join` in `PathBuf::push` | Ezra Shaw | -0/+3 |
| 2022-12-20 | Stabilize path_as_mut_os_str | Andres Suarez | -4/+2 |
| 2022-12-16 | Realistic `Path::as_mut_os_str` doctest | Andres Suarez | -3/+3 |
| 2022-12-16 | Auto merge of #105018 - zertosh:path_buf_deref_mut, r=dtolnay | bors | -0/+14 |
| 2022-11-28 | Add `as_mut_os_string` to `&mut PathBuf` and `as_mut_os_str` to `&mut Path` | Andres Suarez | -0/+46 |
| 2022-11-28 | Implement DerefMut for PathBuf | Andres Suarez | -0/+14 |
| 2022-11-11 | Document `Path::parent` behavior around relative paths | Tobias Bucher | -1/+12 |
| 2022-10-15 | Stabilize `main_separator_str` | Alex Saveau | -1/+1 |
| 2022-10-09 | Add basename and dirname aliases | Ariel Davis | -0/+2 |
| 2022-09-20 | Clarify Path::extension() semantics in docs abstract | Mahmoud Al-Qudsi | -1/+1 |
| 2022-06-20 | Rollup merge of #97912 - Kixunil:stabilize_path_try_exists, r=dtolnay | Yuki Okushi | -6/+11 |
| 2022-06-16 | std: Stabilize feature try_reserve_2 | Xuanwo | -2/+2 |
| 2022-06-14 | Stabilize `Path::try_exists()` and improve doc | Martin Habovstiak | -6/+11 |
| 2022-05-08 | fix panic in Path::strip_prefix | name1e5s | -1/+1 |
| 2022-04-17 | Remove unnecessary function | dylni | -20/+18 |
| 2022-04-17 | Improve Windows path prefix parsing | dylni | -2/+2 |
| 2022-03-29 | Make the stdlib largely conform to strict provenance. | Aria Beingessner | -2/+2 |
| 2022-03-10 | Use implicit capture syntax in format_args | T-O-R-U-S | -1/+1 |
| 2022-02-17 | Rollup merge of #93976 - SUPERCILEX:separator_str, r=yaahc | Matthias Krüger | -0/+6 |
| 2022-02-17 | Rollup merge of #89869 - kpreid:from-doc, r=yaahc | Matthias Krüger | -3/+3 |
| 2022-02-16 | Add MAIN_SEPARATOR_STR | Alex Saveau | -0/+6 |
| 2022-02-13 | Auto merge of #91673 - ChrisDenton:path-absolute, r=Mark-Simulacrum | bors | -1/+77 |