Skip to content

Commit

Permalink
Prepare release 4.1.0.100
Browse files Browse the repository at this point in the history
  • Loading branch information
jbe2277 committed Nov 15, 2020
1 parent 6cf9af1 commit a856837
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions src/DotNetPad/Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
---------

Version 4.1.0.100 (Release)
- Update to Microsoft.CodeAnalysis 3.8.0
- Enable C# 9 final support
- Replace CS9Preview sample with Record sample


Version 4.0.0.100 (Release)
- Update target framework to 4.7.2
- Update to Microsoft.CodeAnalysis 3.7.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public Task FormatDocumentAsync(DocumentId documentId)
return Task.Run(async () =>
{
var formattedDocument = await Microsoft.CodeAnalysis.Formatting.Formatter.FormatAsync(
CurrentSolution.GetDocument(documentId)).ConfigureAwait(false);
CurrentSolution.GetDocument(documentId)!).ConfigureAwait(false);
TryApplyChanges(formattedDocument.Project.Solution);
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<PublisherName>Waf</PublisherName>
<SuiteName>Waf DotNetPad</SuiteName>
<ApplicationRevision>100</ApplicationRevision>
<ApplicationVersion>4.0.0.100</ApplicationVersion>
<ApplicationVersion>4.1.0.100</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<CreateDesktopShortcut>true</CreateDesktopShortcut>
<PublishWizardCompleted>true</PublishWizardCompleted>
Expand Down
4 changes: 2 additions & 2 deletions src/DotNetPad/SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.MainAssembly)]


[assembly: AssemblyVersion("4.0.0.100")]
[assembly: AssemblyFileVersion("4.0.0.100")]
[assembly: AssemblyVersion("4.1.0.100")]
[assembly: AssemblyFileVersion("4.1.0.100")]

0 comments on commit a856837

Please sign in to comment.