Skip to content

0.30.6

Latest
Compare
Choose a tag to compare
@belav belav released this 10 Jan 16:57
· 2 commits to main since this release
ccaca15

What's Changed

Trailing comma is placed on new line if last enum value is followed by a comment #1429

// input
enum MyEnum
{
    First,
    Second // the second value
}

// 0.30.5
enum MyEnum
{
    First,
    Second // the second value
    ,
}

// 0.30.6
enum MyEnum
{
    First,
    Second, // the second value
}

Full Changelog: 0.30.5...0.30.6