v6.2.0
vllm-project/vllmv6.2.0Aug 9, 2024by mo8it
AI Summary
This release focuses on enhancing user experience by adding instant feedback, improving error handling for installation, and optimizing the exercise checking workflow through parallelization.
Key Highlights
- Added an instant feedback message displayed before checking and running exercises.
- Added a helpful error message for users attempting to install with unsupported Rust versions.
- Enabled initialization of Rustlings within a Cargo workspace.
- Final checks for all exercises now run in parallel to improve performance.
Breaking Changes
- The state file and solutions directory have been removed from the generated `.gitignore` file.
New Features
- Show a message before checking and running an exercise.
- Show a helpful error message when trying to install with a Rust version lower than the minimum supported.
- Add a `README.md` file to the `solutions/` directory.
- Allow initializing Rustlings in a Cargo workspace.
- Add `dev check` command to verify all solutions are formatted with `rustfmt`.
Full Release Notes
### Added - Show a message before checking and running an exercise. This gives the user instant feedback and avoids confusion if the checks take too long. - Show a helpful error message when trying to install Rustlings with a Rust version lower than the minimum one that Rustlings supports. - Add a `README.md` file to the `solutions/` directory. - Allow initializing Rustlings in a Cargo workspace. - `dev check`: Check that all solutions are formatted with `rustfmt`. ### Changed - Remove the state file and the solutions directory from the generated `.gitignore` file. - Run the final check of all exercises in parallel. - Small exercise improvements.