Skip to content

Commit 98b848f

Browse files
committed
Add alpha 3 entry in changelog
1 parent 6aec48a commit 98b848f

File tree

3 files changed

+33
-0
lines changed

3 files changed

+33
-0
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
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

build.fsx

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
481501
tryPrintPipelineCommandHelp ()

docs/docs/end-users/UpgradeGuide.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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>

0 commit comments

Comments
 (0)