File tree 2 files changed +5
-0
lines changed 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
20
20
- Support for ` GNU ` as a clang-format style
21
21
- Support for ` Microsoft ` as a clang-format style
22
22
23
+ ### Changed
24
+
25
+ - ` ClangFormatStyle ` enum is now marked as ` non_exhaustive ` to allow for more styles in the future
26
+
23
27
## [ 0.2.0] ( https://github.com/KDAB/clang-format-rs/compare/v0.1.3...v0.2.0 ) - 2023-08-02
24
28
25
29
### Added
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ use std::process::{Command, Stdio};
19
19
/// This list is created from
20
20
/// <https://clang.llvm.org/docs/ClangFormatStyleOptions.html#basedonstyle>
21
21
#[ derive( Debug , PartialEq ) ]
22
+ #[ non_exhaustive]
22
23
pub enum ClangFormatStyle {
23
24
/// A style complying with [Chromium’s style guide](https://chromium.googlesource.com/chromium/src/+/refs/heads/main/styleguide/styleguide.md)
24
25
Chromium ,
You can’t perform that action at this time.
0 commit comments