Skip to content

Commit

Permalink
Releasing 0.11.0 (#479)
Browse files Browse the repository at this point in the history
  • Loading branch information
belav authored Nov 15, 2021
1 parent 669492f commit 8ed2a5b
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# 0.11.0

[diff](https://github.com/belav/csharpier/compare/0.10.0...0.11.0)

- base should merge in an invocation chain [#473](https://github.com/belav/csharpier/issues/473)
- File with multiple newlines at the end keeps them [#464](https://github.com/belav/csharpier/issues/464)
- Extra space in generic with omitted types [#463](https://github.com/belav/csharpier/issues/463)
- Object creation still uses SpaceBrace [#462](https://github.com/belav/csharpier/issues/462)
- Empty Initializer gets double whitespace [#461](https://github.com/belav/csharpier/issues/461)
- Support C# 10 and .Net 6 [#448](https://github.com/belav/csharpier/issues/448)
- Always break nested Conditionals [#434](https://github.com/belav/csharpier/issues/434)


# 0.10.0

[diff](https://github.com/belav/csharpier/compare/0.9.9...0.10.0)
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.10.0</Version>
<Version>0.11.0</Version>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/belav/csharpier</RepositoryUrl>
<RepositoryType>git</RepositoryType>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ If you can live with the fact that the formatting will be changing over time, it
### Features
- It is fast. It can format a solution of ~11,000 files in ~30 seconds.
- It supports validating the syntax of the code it produces to ensure the only changes made were whitespace and line breaks.
- It formats c# <= 9.0 - [c# 10 coming soon](https://github.com/belav/csharpier/issues/448)
- It formats c# <= 10.0

Try it out at [Playground](https://csharpier.com)

Expand Down
6 changes: 4 additions & 2 deletions Scripts/CreateReviewCodePRs.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ param (
# roslyn
# runtime

. $PsScriptRoot/Helpers.ps1

$ErrorActionPreference = "Stop"

if ($version -eq "") {
Expand All @@ -30,7 +32,7 @@ if ($version -eq "") {
$csharpierProject = "C:\Projects\csharpier"
$csharpierRepos = "C:\Projects\csharpierForkedRepos"

& dotnet build $csharpierProject\Src\CSharpier\CSharpier.csproj -c Release
Build-CSharpier

$versionWithQuotes = "`"" + $version + "`"";

Expand All @@ -48,7 +50,7 @@ foreach($folder in Get-ChildItem $csharpierRepos) {

Push-Location $csharpierRepos

dotnet $csharpierProject\Src\CSharpier\bin\Release\net6.0\dotnet-csharpier.dll .
dotnet $csharpierDllPath .

foreach($folder in Get-ChildItem $csharpierRepos)
{
Expand Down

0 comments on commit 8ed2a5b

Please sign in to comment.