File tree Expand file tree Collapse file tree 3 files changed +33
-0
lines changed Expand file tree Collapse file tree 3 files changed +33
-0
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 7.0.0-alpha-003 - 2024-11-29
4+
5+ ### Removed
6+ * setting ` MaxDotGetExpressionWidth ` . [ #3138 ] ( https://github.com/fsprojects/fantomas/pull/3138 )
7+
38## 7.0.0-alpha-002 - 2024-11-02
49
510### Changed
Original file line number Diff line number Diff line change @@ -478,4 +478,24 @@ pipeline "Release" {
478478 runIfOnlySpecified true
479479}
480480
481+ pipeline " PublishAlpha" {
482+ workingDir __ SOURCE_ DIRECTORY__
483+ stage " Clean" { run ( cleanFolders [| analysisReportsDir; " artifacts" |]) }
484+ stage " Build" { run " dotnet build -c Release --tl" }
485+ stage " Pack" { run " dotnet pack --no-restore -c Release --tl" }
486+ stage " Publish" {
487+ run ( fun ctx ->
488+ async {
489+ let nugetPackages =
490+ Directory.EnumerateFiles( " artifacts/package/release" , " *.nupkg" , SearchOption.TopDirectoryOnly)
491+ |> Seq.filter ( fun nupkg -> not ( nupkg.Contains( " Fantomas.Client" )))
492+ |> Seq.toArray
493+
494+ let! nugetExitCodes = nugetPackages |> Array.map pushPackage |> Async.Sequential
495+
496+ return Seq.sum nugetExitCodes
497+ })
498+ }
499+ }
500+
481501tryPrintPipelineCommandHelp ()
Original file line number Diff line number Diff line change @@ -82,4 +82,12 @@ fsharp_experimental_stroustrup_style = true
8282### Miscellaneous
8383- The namespace in [ Fantomas.FCS] ( https://www.nuget.org/packages/Fantomas.FCS ) changed from ` FSharp.Compiler ` to ` Fantomas.FCS ` .
8484
85+ ## v7 alpha
86+
87+ ### console application
88+ - Target framework is now ` net8.0 ` .
89+
90+ ### .editorconfig
91+ - ` fsharp_max_dot_get_expression_width ` was removed.
92+
8593<fantomas-nav previous =" {{fsdocs-previous-page-link}} " next =" {{fsdocs-next-page-link}} " ></fantomas-nav >
You can’t perform that action at this time.
0 commit comments