Skip to content

Commit 0ffc760

Browse files
authored
Merge pull request #877 from nojaf/bump-sdk-8-0-100
Bump sdk 8 0 100
2 parents 53a00e2 + f227ada commit 0ffc760

File tree

17 files changed

+33
-66
lines changed

17 files changed

+33
-66
lines changed

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"fantomas": {
6-
"version": "6.2.3",
6+
"version": "6.3.0-alpha-003",
77
"commands": [
88
"fantomas"
99
]

.github/dependabot.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
version: 2
22
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
38
- package-ecosystem: nuget
49
directory: "/"
510
schedule:

.github/workflows/modern-theme.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
## Building and Development
33

44
- Clone the repository
5-
- Build with `build.cmd` or `build.sh`
5+
- Build with `dotnet build`
66
- Open `FSharp.Formatting.sln` with Visual Studio or Visual Studio Code (with the ionide-fsharp extension)
77

88
## Source Formatting

FSharp.Formatting.sln

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "project", "project", "{194B
88
.dockerignore = .dockerignore
99
.editorconfig = .editorconfig
1010
.gitignore = .gitignore
11-
build.cmd = build.cmd
1211
build.fsx = build.fsx
13-
build.sh = build.sh
1412
Directory.Build.props = Directory.Build.props
1513
docker-build.sh = docker-build.sh
1614
Dockerfile = Dockerfile

RELEASE_NOTES.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## [Unreleased]
3+
## 20.0.0-alpha-013 - 2023-11-21
44

55
### Added
66
* Add more options to customize colors.
@@ -9,6 +9,9 @@
99
- `--fsdocs-theme-toggle-light-color` and `--fsdocs-theme-toggle-dark-color` are now deprecated. Use `--header-link-color` instead.
1010
- `<FsDocsCollectionNameLink>`
1111

12+
### Changed
13+
- Update FCS to 43.8.100
14+
1215
## 20.0.0-alpha-012 - 2023-11-17
1316

1417
### Added

build.fsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ let lintStage =
4747
let testStage =
4848
stage "Tests" {
4949
run
50-
$"dotnet test {solutionFile} --configuration {configuration} --no-build --blame --logger trx --framework net7.0 --results-directory TestResults"
50+
$"dotnet test {solutionFile} --configuration {configuration} --no-build --blame --logger trx --results-directory TestResults -tl"
5151
}
5252

5353
pipeline "CI" {
@@ -61,11 +61,11 @@ pipeline "CI" {
6161
}
6262

6363
stage "Build" {
64-
run $"dotnet restore {solutionFile}"
65-
run $"dotnet build {solutionFile} --configuration {configuration}"
64+
run $"dotnet restore {solutionFile} -tl"
65+
run $"dotnet build {solutionFile} --configuration {configuration} -tl"
6666
}
6767

68-
stage "NuGet" { run $"dotnet pack {solutionFile} --output \"{artifactsDir}\" --configuration {configuration}" }
68+
stage "NuGet" { run $"dotnet pack {solutionFile} --output \"{artifactsDir}\" --configuration {configuration} -tl" }
6969

7070
testStage
7171

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "7.0.400"
3+
"version": "8.0.100"
44
}
55
}

src/Directory.Build.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<Project>
2+
<Import Project="../Directory.Build.props" />
23
<ItemGroup>
34
<PackageReference Include="FSharp.Analyzers.Build">
45
<PrivateAssets>all</PrivateAssets>

src/FSharp.Formatting.ApiDocs/GenerateModel.fs

Lines changed: 9 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -3132,46 +3132,28 @@ type ApiDocsSearchIndexEntry =
31323132
}
31333133

31343134
[<Obsolete("Renamed to ApiDocMember", true)>]
3135-
type Member =
3136-
class
3137-
end
3135+
type Member = class end
31383136

31393137
[<Obsolete("Renamed to ApiDocMemberKind", true)>]
3140-
type MemberKind =
3141-
class
3142-
end
3138+
type MemberKind = class end
31433139

31443140
[<Obsolete("Renamed to ApiDocAttribute", true)>]
3145-
type Attribute =
3146-
class
3147-
end
3141+
type Attribute = class end
31483142

31493143
[<Obsolete("Renamed to ApiDocComment", true)>]
3150-
type DocComment =
3151-
class
3152-
end
3144+
type DocComment = class end
31533145

31543146
[<Obsolete("Renamed to ApiDocEntity", true)>]
3155-
type Module =
3156-
class
3157-
end
3147+
type Module = class end
31583148

31593149
[<Obsolete("Renamed to ApiDocEntityInfo", true)>]
3160-
type ModuleInfo =
3161-
class
3162-
end
3150+
type ModuleInfo = class end
31633151

31643152
[<Obsolete("Renamed to ApiDocEntity", true)>]
3165-
type Type =
3166-
class
3167-
end
3153+
type Type = class end
31683154

31693155
[<Obsolete("Renamed to ApiDocEntity", true)>]
3170-
type ApiDocType =
3171-
class
3172-
end
3156+
type ApiDocType = class end
31733157

31743158
[<Obsolete("Renamed to ApiDocTypeInfo", true)>]
3175-
type TypeInfo =
3176-
class
3177-
end
3159+
type TypeInfo = class end

0 commit comments

Comments
 (0)