| Age | Commit message (Expand) | Author | Lines |
| 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 |
| 2022-02-12 | Auto merge of #93697 - the8472:fix-windows-path-hash, r=Mark-Simulacrum | bors | -9/+17 |
| 2022-02-08 | Fix `absolute` issues | Chris Denton | -2/+2 |
| 2022-02-08 | `std::path::absolute` | Chris Denton | -1/+77 |
| 2022-02-06 | Fix hashing for windows paths containing a CurDir component | The 8472 | -9/+17 |
| 2022-02-01 | Link `try_exists` docs to `Path::exists` | Chris Denton | -1/+3 |
| 2022-01-24 | Rollup merge of #92513 - Xuanwo:path-buf, r=dtolnay | Matthias Krüger | -0/+19 |
| 2022-01-20 | Correct docs in `Arc` and `Rc`. | Jakob Degen | -3/+5 |
| 2022-01-14 | Typos fix | Maxwase | -1/+1 |
| 2022-01-03 | std: Implement try_reserve and try_reserve_exact on PathBuf | Xuanwo | -0/+19 |
| 2021-12-11 | Correct since attribute for feature | Maxwase | -1/+1 |
| 2021-12-04 | Add documentation to more `From::from` implementations. | Kevin Reid | -3/+3 |
| 2021-12-02 | Document file path case sensitivity | Chris Denton | -0/+7 |
| 2021-11-11 | `Prefix` can be case-insensitive, delegate to its Hash impl instead of trying... | The8472 | -0/+8 |
| 2021-11-09 | remove redundant .iter() call since zip() takes an IntoIterator argument | The8472 | -6/+5 |
| 2021-11-09 | add fast path on Path::eq for exact equality | The8472 | -1/+20 |