Skip to content

Commit

Permalink
Releasing 0.24.1 (#881)
Browse files Browse the repository at this point in the history
  • Loading branch information
belav committed Apr 26, 2023
1 parent e4dcade commit 6ab7e3e
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 1 deletion.
40 changes: 40 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,43 @@
# 0.24.1
## What's Changed
#### 0.24.0 Regression csharpier-ignore causes blank lines between statements to be removed. [#879](https://github.com/belav/csharpier/issues/879)
```c#
// input & expected output
// csharpier-ignore
public string Example
{
get
{
if (_example is not null)
return _example;

var number = Random.Shared.Next();

return _example = number.ToString();
}
}

// 0.24.0
// csharpier-ignore
public string Example
{
get
{
if (_example is not null)
return _example;
var number = Random.Shared.Next();
return _example = number.ToString();
}
}
```

Thanks go to @Pentadome for reporting the regression bug.

**Full Changelog**: https://github.com/belav/csharpier/compare/0.24.0...0.24.1


# 0.24.0
## What's Changed
#### Formatting named list patterns loses code and causes compilation error [#876](https://github.com/belav/csharpier/issues/876)
Expand Down
2 changes: 1 addition & 1 deletion CSharpier.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Version>0.24.0</Version>
<Version>0.24.1</Version>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/belav/csharpier</RepositoryUrl>
<RepositoryType>git</RepositoryType>
Expand Down

0 comments on commit 6ab7e3e

Please sign in to comment.