Skip to content

Commit ccaca15

Browse files
authored
Releasing 0.30.6 (#1432)
1 parent ec2b18f commit ccaca15

File tree

2 files changed

+31
-2
lines changed

2 files changed

+31
-2
lines changed

CHANGELOG.md

+30-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,32 @@
1-
# 0.30.5
1+
# 0.30.6
2+
## What's Changed
3+
### Trailing comma is placed on new line if last enum value is followed by a comment [#1429](https://github.com/belav/csharpier/issues/1429)
4+
```c#
5+
// input
6+
enum MyEnum
7+
{
8+
First,
9+
Second // the second value
10+
}
11+
12+
// 0.30.5
13+
enum MyEnum
14+
{
15+
First,
16+
Second // the second value
17+
,
18+
}
19+
20+
// 0.30.6
21+
enum MyEnum
22+
{
23+
First,
24+
Second, // the second value
25+
}
26+
```
27+
28+
**Full Changelog**: https://github.com/belav/csharpier/compare/0.30.5...0.30.6
29+
# 0.30.5
230
## What's Changed
331
### Extra blank line added to file each time csharpier runs on this file [#1426](https://github.com/belav/csharpier/issues/1426)
432
When a file ended in a comment and that comment had multiple blank lines before it, a new blank line was being added each time it was formatted.
@@ -2891,5 +2919,6 @@ Thanks go to @pingzing
28912919
28922920
28932921
2922+
28942923
28952924

Nuget/Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>0.30.5</Version>
3+
<Version>0.30.6</Version>
44
<PackageLicenseExpression>MIT</PackageLicenseExpression>
55
<RepositoryUrl>https://github.com/belav/csharpier</RepositoryUrl>
66
<RepositoryType>git</RepositoryType>

0 commit comments

Comments
 (0)