From 5f49c81fa8974febc016d577adc6d060476f4aec Mon Sep 17 00:00:00 2001 From: Don Syme Date: Tue, 30 Aug 2022 18:20:18 +0100 Subject: [PATCH 01/37] Update dotnet-tools.json --- .config/dotnet-tools.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 222d69af81..8246397183 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "fsdocs-tool": { - "version": "16.0.2", + "version": "16.0.4", "commands": [ "fsdocs" ] From 8a7463a23f611483312ac0f6dab5321194fbae53 Mon Sep 17 00:00:00 2001 From: Don Syme Date: Tue, 30 Aug 2022 18:36:01 +0100 Subject: [PATCH 02/37] Update dotnet-tools.json --- .config/dotnet-tools.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 8246397183..6a1cbd37ac 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "fsdocs-tool": { - "version": "16.0.4", + "version": "16.1.0", "commands": [ "fsdocs" ] From bf1cd1c507bab682e9a870e1b130ebf80eb2e71c Mon Sep 17 00:00:00 2001 From: Don Syme Date: Wed, 31 Aug 2022 11:53:25 +0100 Subject: [PATCH 03/37] Update dotnet-tools.json --- .config/dotnet-tools.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 8246397183..6a1cbd37ac 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "fsdocs-tool": { - "version": "16.0.4", + "version": "16.1.0", "commands": [ "fsdocs" ] From 9bef096266e23d0be32a96c8945b1914b4ba8aa8 Mon Sep 17 00:00:00 2001 From: Don Syme Date: Thu, 1 Sep 2022 11:03:59 +0100 Subject: [PATCH 04/37] Update docs.yml --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 53ec80290b..542a421f77 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -18,7 +18,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 6.0.203 + dotnet-version: 6.0.400 - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: From 86564f99682f31ceebbcb87b17f7fe1426f06435 Mon Sep 17 00:00:00 2001 From: Don Syme Date: Thu, 1 Sep 2022 11:04:16 +0100 Subject: [PATCH 05/37] Update pr.yml --- .github/workflows/pr.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 68426085a4..1c2e3ec36d 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: os: [windows-latest] - dotnet: [6.0.203] + dotnet: [6.0.400] runs-on: ${{ matrix.os }} steps: @@ -19,7 +19,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 6.0.203 + dotnet-version: 6.0.400 - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: From 08d6a58eec2d014db54939ae19257ee3640026d1 Mon Sep 17 00:00:00 2001 From: nojaf Date: Thu, 17 Nov 2022 14:20:56 +0100 Subject: [PATCH 06/37] Update FsDocs --- .config/dotnet-tools.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 6a1cbd37ac..a252ad9f5c 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,10 +3,10 @@ "isRoot": true, "tools": { "fsdocs-tool": { - "version": "16.1.0", + "version": "17.0.0", "commands": [ "fsdocs" ] } } -} +} \ No newline at end of file From e241d99d90433cfc3734a71730f5e2b67633a35d Mon Sep 17 00:00:00 2001 From: nojaf Date: Thu, 17 Nov 2022 14:38:13 +0100 Subject: [PATCH 07/37] Update .NET SDK for GitHub Actions --- .github/workflows/docs.yml | 12 ++++-------- .github/workflows/pr.yml | 12 ++++-------- 2 files changed, 8 insertions(+), 16 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 542a421f77..923a81986c 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -14,15 +14,11 @@ jobs: build: runs-on: windows-latest steps: - - uses: actions/checkout@v2 - - name: Setup .NET Core - uses: actions/setup-dotnet@v1 + - uses: actions/checkout@v3 + - name: Setup .NET + uses: actions/setup-dotnet@v3 with: - dotnet-version: 6.0.400 - - name: Setup .NET Core - uses: actions/setup-dotnet@v1 - with: - dotnet-version: 7.0.100-preview.6.22352.1 + dotnet-version: 7.0.100 - name: Restore tools run: dotnet tool restore - name: Restore projects diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 1c2e3ec36d..b4da0dfa93 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -15,15 +15,11 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 - - name: Setup .NET Core - uses: actions/setup-dotnet@v1 + - uses: actions/checkout@v3 + - name: Setup .NET + uses: actions/setup-dotnet@v3 with: - dotnet-version: 6.0.400 - - name: Setup .NET Core - uses: actions/setup-dotnet@v1 - with: - dotnet-version: 7.0.100-preview.6.22352.1 + dotnet-version: 7.0.100 - name: Restore tools run: dotnet tool restore - name: Restore projects From a5e95c7d1d1a3fa3b3a3b74ca92e79f32264a75b Mon Sep 17 00:00:00 2001 From: nojaf Date: Wed, 6 Sep 2023 11:20:34 +0200 Subject: [PATCH 08/37] Update PR action --- .config/dotnet-tools.json | 2 +- .github/workflows/pr.yml | 33 +++++++++++++++++++++++---------- .gitignore | 2 +- 3 files changed, 25 insertions(+), 12 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index a252ad9f5c..ebd9998120 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "fsdocs-tool": { - "version": "17.0.0", + "version": "19.0.0", "commands": [ "fsdocs" ] diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index b4da0dfa93..90e89a7baa 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -5,28 +5,41 @@ on: branches: - '**' +env: + FSHARP_DIR: fsharp + jobs: build: strategy: matrix: - os: [windows-latest] + os: [ubuntu-latest] dotnet: [6.0.400] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 - - name: Setup .NET + - uses: actions/checkout@v3 + - name: Checkout fsharp main + uses: actions/checkout@v3 + with: + repository: dotnet/fsharp + path: ${{ env.FSHARP_DIR }} + ref: main + - name: Setup .NET for FSharp uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.0.100 + global-json-file: ${{ env.FSHARP_DIR }}/global.json - name: Restore tools run: dotnet tool restore - - name: Restore projects - run: dotnet restore FSharp.Compiler.Service\FSharp.Compiler.Service.fsproj - - name: Checkout fsharp master - run: git clone https://github.com/dotnet/fsharp --depth 1 fsharp -b main - - name: Build fsharp master (turn of CI build status) - run: cd fsharp && eng\CIBuild.cmd -noVisualStudio + + - name: Build FCS + run: dotnet build src/Compiler/FSharp.Compiler.Service.fsproj /p:BUILDING_USING_DOTNET=true + working-directory: ${{ env.FSHARP_DIR }} + - name: Run fsdocs + env: + # allow roll forward to latest major version - this would happen for us if we invoked the fsdocs tool instead of invoking the binary directly + DOTNET_ROLL_FORWARD: "LatestMajor" + # need previews because .NET 8 is what's being used at runtime + DOTNET_ROLL_FORWARD_TO_PRERELEASE: "1" run: dotnet fsdocs build --sourcefolder fsharp --input fsharp/docs diff --git a/.gitignore b/.gitignore index 6e2e1f7f49..0d5e6eea97 100644 --- a/.gitignore +++ b/.gitignore @@ -9,4 +9,4 @@ FSharp.Formatting/ .fsdocs/ FSharp.Compiler.Service/obj/ tmp/ - +output/ From c07b50e0793b6ac85f0d622c9dcc82a57e8a5fc0 Mon Sep 17 00:00:00 2001 From: nojaf Date: Wed, 6 Sep 2023 11:24:12 +0200 Subject: [PATCH 09/37] Valid yaml --- .github/workflows/pr.yml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 90e89a7baa..3e5e1acc6b 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -25,21 +25,21 @@ jobs: repository: dotnet/fsharp path: ${{ env.FSHARP_DIR }} ref: main - - name: Setup .NET for FSharp - uses: actions/setup-dotnet@v3 - with: - global-json-file: ${{ env.FSHARP_DIR }}/global.json - - name: Restore tools - run: dotnet tool restore + - name: Setup .NET for FSharp + uses: actions/setup-dotnet@v3 + with: + global-json-file: ${{ env.FSHARP_DIR }}/global.json + - name: Restore tools + run: dotnet tool restore - - name: Build FCS - run: dotnet build src/Compiler/FSharp.Compiler.Service.fsproj /p:BUILDING_USING_DOTNET=true - working-directory: ${{ env.FSHARP_DIR }} + - name: Build FCS + run: dotnet build src/Compiler/FSharp.Compiler.Service.fsproj /p:BUILDING_USING_DOTNET=true + working-directory: ${{ env.FSHARP_DIR }} - - name: Run fsdocs - env: - # allow roll forward to latest major version - this would happen for us if we invoked the fsdocs tool instead of invoking the binary directly - DOTNET_ROLL_FORWARD: "LatestMajor" - # need previews because .NET 8 is what's being used at runtime - DOTNET_ROLL_FORWARD_TO_PRERELEASE: "1" - run: dotnet fsdocs build --sourcefolder fsharp --input fsharp/docs + - name: Run fsdocs + env: + # allow roll forward to latest major version - this would happen for us if we invoked the fsdocs tool instead of invoking the binary directly + DOTNET_ROLL_FORWARD: "LatestMajor" + # need previews because .NET 8 is what's being used at runtime + DOTNET_ROLL_FORWARD_TO_PRERELEASE: "1" + run: dotnet fsdocs build --sourcefolder fsharp --input fsharp/docs From fd1dcbe77a6a2afa62ec20c35270e2dc44a2a13e Mon Sep 17 00:00:00 2001 From: nojaf Date: Wed, 6 Sep 2023 11:31:08 +0200 Subject: [PATCH 10/37] Update docs Action --- .github/workflows/docs.yml | 56 ++++++++++++++++++++++---------------- .github/workflows/pr.yml | 8 +----- 2 files changed, 34 insertions(+), 30 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 923a81986c..73a609b2b5 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -12,27 +12,37 @@ on: jobs: build: - runs-on: windows-latest + runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - name: Setup .NET - uses: actions/setup-dotnet@v3 - with: - dotnet-version: 7.0.100 - - name: Restore tools - run: dotnet tool restore - - name: Restore projects - run: dotnet restore FSharp.Compiler.Service\FSharp.Compiler.Service.fsproj - - name: Checkout fsharp master - run: git clone https://github.com/dotnet/fsharp --depth 1 fsharp -b main - - name: Build fsharp master (turn of CI build status) - run: cd fsharp && eng\CIBuild.cmd -noVisualStudio - - name: Run fsdocs - run: dotnet fsdocs build --sourcefolder fsharp --input fsharp/docs - - name: Deploy - uses: peaceiris/actions-gh-pages@v3 - with: - personal_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./output - publish_branch: gh-pages - force_orphan: true + - uses: actions/checkout@v3 + - name: Checkout fsharp main + uses: actions/checkout@v3 + with: + repository: dotnet/fsharp + path: ${{ env.FSHARP_DIR }} + ref: main + - name: Setup .NET for FSharp + uses: actions/setup-dotnet@v3 + with: + global-json-file: ${{ env.FSHARP_DIR }}/global.json + - name: Restore tools + run: dotnet tool restore + + - name: Build FCS + run: dotnet build src/Compiler/FSharp.Compiler.Service.fsproj /p:BUILDING_USING_DOTNET=true + working-directory: ${{ env.FSHARP_DIR }} + + - name: Run fsdocs + env: + # allow roll forward to latest major version - this would happen for us if we invoked the fsdocs tool instead of invoking the binary directly + DOTNET_ROLL_FORWARD: "LatestMajor" + # need previews because .NET 8 is what's being used at runtime + DOTNET_ROLL_FORWARD_TO_PRERELEASE: "1" + run: dotnet fsdocs build --sourcefolder fsharp --input fsharp/docs + - name: Deploy + uses: peaceiris/actions-gh-pages@v3 + with: + personal_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./output + publish_branch: gh-pages + force_orphan: true diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 3e5e1acc6b..dbad3e6df9 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -10,13 +10,7 @@ env: jobs: build: - - strategy: - matrix: - os: [ubuntu-latest] - dotnet: [6.0.400] - runs-on: ${{ matrix.os }} - + runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Checkout fsharp main From 9634e4dcac4e7df045438865ec7a92f0ed379179 Mon Sep 17 00:00:00 2001 From: nojaf Date: Wed, 6 Sep 2023 11:35:38 +0200 Subject: [PATCH 11/37] Add missing env --- .github/workflows/docs.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 73a609b2b5..7cf7d46732 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -10,6 +10,9 @@ on: - main workflow_dispatch: +env: + FSHARP_DIR: fsharp + jobs: build: runs-on: ubuntu-latest From cb6cb8eabbe7bb992c798827e47f872ef4fb4e68 Mon Sep 17 00:00:00 2001 From: nojaf Date: Wed, 6 Sep 2023 11:56:51 +0200 Subject: [PATCH 12/37] Update instructions in README --- README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index d6934b1191..cd27934674 100644 --- a/README.md +++ b/README.md @@ -25,20 +25,21 @@ Eventually the build will just be For now, we make a fresh build of FSharp.Compiler.Service. - (start in fsharp-conpiler-docs) - dotnet restore fsharp-conpiler-docs + (start in fsharp-compiler-docs) + dotnet restore FSharp.Compiler.Service + dotnet tool restore - (make fsharp-conpiler-docs/fsharp) + (make fsharp-compiler-docs/fsharp) git clone https://github.com/dotnet/fsharp --depth 1 -b main - (build fsharp-conpiler-docs) + (build fsharp-compiler-docs/fsharp) pushd fsharp - .\build -noVisualStudio + dotnet build src/Compiler/FSharp.Compiler.Service.fsproj /p:BUILDING_USING_DOTNET=true popd Then do iterative development using: - (from fsharp-conpiler-docs) + (from fsharp-compiler-docs) dotnet fsdocs watch --sourcefolder fsharp --input fsharp/docs ## CI Pipeline From 13dfc7bf2062035018e4809741338bd9af02eda4 Mon Sep 17 00:00:00 2001 From: nojaf Date: Wed, 6 Sep 2023 12:44:07 +0200 Subject: [PATCH 13/37] Restore FSharp.Compiler.Service.fsproj --- .github/workflows/docs.yml | 3 ++- .github/workflows/pr.yml | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 7cf7d46732..b9f163aa44 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -30,7 +30,8 @@ jobs: global-json-file: ${{ env.FSHARP_DIR }}/global.json - name: Restore tools run: dotnet tool restore - + - name: Restore FSharp.Compiler.Service.fsproj + run: dotnet restore FSharp.Compiler.Service/FSharp.Compiler.Service.fsproj - name: Build FCS run: dotnet build src/Compiler/FSharp.Compiler.Service.fsproj /p:BUILDING_USING_DOTNET=true working-directory: ${{ env.FSHARP_DIR }} diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index dbad3e6df9..d679836e69 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -25,6 +25,8 @@ jobs: global-json-file: ${{ env.FSHARP_DIR }}/global.json - name: Restore tools run: dotnet tool restore + - name: Restore FSharp.Compiler.Service.fsproj + run: dotnet restore FSharp.Compiler.Service/FSharp.Compiler.Service.fsproj - name: Build FCS run: dotnet build src/Compiler/FSharp.Compiler.Service.fsproj /p:BUILDING_USING_DOTNET=true From b856d0e6efbb42c6bd01d0ddf868db48b359b019 Mon Sep 17 00:00:00 2001 From: nojaf Date: Wed, 6 Sep 2023 13:16:34 +0200 Subject: [PATCH 14/37] Correct casing of Build.cmd --- FSharp.Compiler.Service/FSharp.Compiler.Service.fsproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FSharp.Compiler.Service/FSharp.Compiler.Service.fsproj b/FSharp.Compiler.Service/FSharp.Compiler.Service.fsproj index f03f03d8d0..c7745d00d9 100644 --- a/FSharp.Compiler.Service/FSharp.Compiler.Service.fsproj +++ b/FSharp.Compiler.Service/FSharp.Compiler.Service.fsproj @@ -18,10 +18,10 @@ - $(MSBuildThisFileDirectory)..\..\fsharp\artifacts\bin\FSharp.Compiler.Service\Debug\netstandard2.0\FSharp.Compiler.Service.dll + $(MSBuildThisFileDirectory)..\..\fsharp\artifacts\bin\FSharp.Compiler.Service\Debug\netstandard2.0\FSharp.Compiler.Service.dll - $(MSBuildThisFileDirectory)..\fsharp\artifacts\bin\FSharp.Compiler.Service\Debug\netstandard2.0\FSharp.Compiler.Service.dll + $(MSBuildThisFileDirectory)..\fsharp\artifacts\bin\FSharp.Compiler.Service\Debug\netstandard2.0\FSharp.Compiler.Service.dll From e156dcb772eaa508f706add6447ef2a700b932c5 Mon Sep 17 00:00:00 2001 From: nojaf Date: Sat, 11 Nov 2023 17:47:30 +0100 Subject: [PATCH 15/37] Update fsdcocs --- .config/dotnet-tools.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index ebd9998120..05b43454e3 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "fsdocs-tool": { - "version": "19.0.0", + "version": "20.0.0-alpha-009", "commands": [ "fsdocs" ] From 2def1f342f86dc12be2164a2a45019f700ab02dd Mon Sep 17 00:00:00 2001 From: nojaf Date: Wed, 15 Nov 2023 12:57:39 +0100 Subject: [PATCH 16/37] Add dependabot config --- .github/dependabot.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..8ce0230202 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 +updates: + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + + - package-ecosystem: "nuget" + directory: "/" + schedule: + interval: "daily" From 4fecaee61d1830fcbf2103b8e1e363f6970a0909 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Nov 2023 11:58:35 +0000 Subject: [PATCH 17/37] Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/docs.yml | 4 ++-- .github/workflows/pr.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index b9f163aa44..4ee1572188 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -17,9 +17,9 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Checkout fsharp main - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: dotnet/fsharp path: ${{ env.FSHARP_DIR }} diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index d679836e69..7e34fb677a 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -12,9 +12,9 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Checkout fsharp main - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: dotnet/fsharp path: ${{ env.FSHARP_DIR }} From 9a5fbf0d296652f5c597073f44bc63e6e719c964 Mon Sep 17 00:00:00 2001 From: nojaf Date: Wed, 22 Nov 2023 08:23:52 +0100 Subject: [PATCH 18/37] Bump fsdocs-tool to v20 alpha 13 --- .config/dotnet-tools.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 05b43454e3..75d796f931 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "fsdocs-tool": { - "version": "20.0.0-alpha-009", + "version": "20.0.0-alpha-013", "commands": [ "fsdocs" ] From 7b645725ad3af2211a01c844cecc5b815c68ac52 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 22:36:33 +0000 Subject: [PATCH 19/37] Bump fsdocs-tool from 20.0.0-alpha-013 to 20.0.0-alpha-014 Bumps [fsdocs-tool](https://github.com/fsprojects/FSharp.Formatting) from 20.0.0-alpha-013 to 20.0.0-alpha-014. - [Changelog](https://github.com/fsprojects/FSharp.Formatting/blob/main/RELEASE_NOTES.md) - [Commits](https://github.com/fsprojects/FSharp.Formatting/commits) --- updated-dependencies: - dependency-name: fsdocs-tool dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .config/dotnet-tools.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 75d796f931..55f4ac56f8 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "fsdocs-tool": { - "version": "20.0.0-alpha-013", + "version": "20.0.0-alpha-014", "commands": [ "fsdocs" ] From e799c3fd8741aa0bacdf79b4ceba05e9e8906dcd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Dec 2023 22:36:44 +0000 Subject: [PATCH 20/37] Bump actions/setup-dotnet from 3 to 4 Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from 3 to 4. - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](https://github.com/actions/setup-dotnet/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/setup-dotnet dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/docs.yml | 2 +- .github/workflows/pr.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 4ee1572188..3896fbd51e 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -25,7 +25,7 @@ jobs: path: ${{ env.FSHARP_DIR }} ref: main - name: Setup .NET for FSharp - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: global-json-file: ${{ env.FSHARP_DIR }}/global.json - name: Restore tools diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 7e34fb677a..9e8e498429 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -20,7 +20,7 @@ jobs: path: ${{ env.FSHARP_DIR }} ref: main - name: Setup .NET for FSharp - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: global-json-file: ${{ env.FSHARP_DIR }}/global.json - name: Restore tools From f2a18f32777191ffd5a866cc127e347ed4e6231a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 Dec 2023 22:44:57 +0000 Subject: [PATCH 21/37] Bump fsdocs-tool from 20.0.0-alpha-014 to 20.0.0-alpha-015 Bumps [fsdocs-tool](https://github.com/fsprojects/FSharp.Formatting) from 20.0.0-alpha-014 to 20.0.0-alpha-015. - [Changelog](https://github.com/fsprojects/FSharp.Formatting/blob/main/RELEASE_NOTES.md) - [Commits](https://github.com/fsprojects/FSharp.Formatting/commits) --- updated-dependencies: - dependency-name: fsdocs-tool dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .config/dotnet-tools.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 55f4ac56f8..c6c449d551 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "fsdocs-tool": { - "version": "20.0.0-alpha-014", + "version": "20.0.0-alpha-015", "commands": [ "fsdocs" ] From 383b60436c7a261a50196f8dc9955915cfc90a8a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 7 Dec 2023 22:54:42 +0000 Subject: [PATCH 22/37] Bump fsdocs-tool from 20.0.0-alpha-015 to 20.0.0-alpha-016 Bumps [fsdocs-tool](https://github.com/fsprojects/FSharp.Formatting) from 20.0.0-alpha-015 to 20.0.0-alpha-016. - [Changelog](https://github.com/fsprojects/FSharp.Formatting/blob/main/RELEASE_NOTES.md) - [Commits](https://github.com/fsprojects/FSharp.Formatting/commits) --- updated-dependencies: - dependency-name: fsdocs-tool dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .config/dotnet-tools.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index c6c449d551..88457fdc69 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "fsdocs-tool": { - "version": "20.0.0-alpha-015", + "version": "20.0.0-alpha-016", "commands": [ "fsdocs" ] From 712e055b1b88a579d2016b06bd5677d4ec139be5 Mon Sep 17 00:00:00 2001 From: nojaf Date: Thu, 14 Dec 2023 13:34:15 +0100 Subject: [PATCH 23/37] Add eval flag --- .github/workflows/docs.yml | 2 +- .github/workflows/pr.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 3896fbd51e..bcbf3dc42b 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -42,7 +42,7 @@ jobs: DOTNET_ROLL_FORWARD: "LatestMajor" # need previews because .NET 8 is what's being used at runtime DOTNET_ROLL_FORWARD_TO_PRERELEASE: "1" - run: dotnet fsdocs build --sourcefolder fsharp --input fsharp/docs + run: dotnet fsdocs build --eval --sourcefolder fsharp --input fsharp/docs - name: Deploy uses: peaceiris/actions-gh-pages@v3 with: diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 9e8e498429..84eb9ebfad 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -38,4 +38,4 @@ jobs: DOTNET_ROLL_FORWARD: "LatestMajor" # need previews because .NET 8 is what's being used at runtime DOTNET_ROLL_FORWARD_TO_PRERELEASE: "1" - run: dotnet fsdocs build --sourcefolder fsharp --input fsharp/docs + run: dotnet fsdocs build --eval --sourcefolder fsharp --input fsharp/docs From be48d117e2c9016faeab646170d149e07d8b02b0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 9 Jan 2024 22:13:33 +0000 Subject: [PATCH 24/37] Bump fsdocs-tool from 20.0.0-alpha-016 to 20.0.0-alpha-017 Bumps [fsdocs-tool](https://github.com/fsprojects/FSharp.Formatting) from 20.0.0-alpha-016 to 20.0.0-alpha-017. - [Changelog](https://github.com/fsprojects/FSharp.Formatting/blob/main/RELEASE_NOTES.md) - [Commits](https://github.com/fsprojects/FSharp.Formatting/commits) --- updated-dependencies: - dependency-name: fsdocs-tool dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .config/dotnet-tools.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 88457fdc69..57d9945937 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "fsdocs-tool": { - "version": "20.0.0-alpha-016", + "version": "20.0.0-alpha-017", "commands": [ "fsdocs" ] From f526d8562d6937d94fc8b835fac40114f7946912 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 10 Jan 2024 22:47:17 +0000 Subject: [PATCH 25/37] Bump fsdocs-tool from 20.0.0-alpha-017 to 20.0.0-alpha-018 Bumps [fsdocs-tool](https://github.com/fsprojects/FSharp.Formatting) from 20.0.0-alpha-017 to 20.0.0-alpha-018. - [Changelog](https://github.com/fsprojects/FSharp.Formatting/blob/main/RELEASE_NOTES.md) - [Commits](https://github.com/fsprojects/FSharp.Formatting/commits) --- updated-dependencies: - dependency-name: fsdocs-tool dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .config/dotnet-tools.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 57d9945937..16e1dcac88 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "fsdocs-tool": { - "version": "20.0.0-alpha-017", + "version": "20.0.0-alpha-018", "commands": [ "fsdocs" ] From 4ccdd65587e9b689b8e4c245248e55b11254b133 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 22:28:39 +0000 Subject: [PATCH 26/37] Bump fsdocs-tool from 20.0.0-alpha-018 to 20.0.0-alpha-019 Bumps [fsdocs-tool](https://github.com/fsprojects/FSharp.Formatting) from 20.0.0-alpha-018 to 20.0.0-alpha-019. - [Changelog](https://github.com/fsprojects/FSharp.Formatting/blob/main/RELEASE_NOTES.md) - [Commits](https://github.com/fsprojects/FSharp.Formatting/commits) --- updated-dependencies: - dependency-name: fsdocs-tool dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .config/dotnet-tools.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 16e1dcac88..dc20e3da35 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "fsdocs-tool": { - "version": "20.0.0-alpha-018", + "version": "20.0.0-alpha-019", "commands": [ "fsdocs" ] From 38160e2f7dd74b5ca749ac171eb2a3fb9f825715 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 22:32:48 +0000 Subject: [PATCH 27/37] Bump fsdocs-tool from 20.0.0-alpha-019 to 20.0.0-beta-001 Bumps [fsdocs-tool](https://github.com/fsprojects/FSharp.Formatting) from 20.0.0-alpha-019 to 20.0.0-beta-001. - [Changelog](https://github.com/fsprojects/FSharp.Formatting/blob/main/RELEASE_NOTES.md) - [Commits](https://github.com/fsprojects/FSharp.Formatting/commits) --- updated-dependencies: - dependency-name: fsdocs-tool dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .config/dotnet-tools.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index dc20e3da35..b2e6f532a3 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "fsdocs-tool": { - "version": "20.0.0-alpha-019", + "version": "20.0.0-beta-001", "commands": [ "fsdocs" ] From 8cc6ebe5f477f967ce59dcd43daec090ba1e9c00 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 8 Feb 2024 22:38:29 +0000 Subject: [PATCH 28/37] Bump fsdocs-tool from 20.0.0-beta-001 to 20.0.0-beta-002 Bumps [fsdocs-tool](https://github.com/fsprojects/FSharp.Formatting) from 20.0.0-beta-001 to 20.0.0-beta-002. - [Changelog](https://github.com/fsprojects/FSharp.Formatting/blob/main/RELEASE_NOTES.md) - [Commits](https://github.com/fsprojects/FSharp.Formatting/commits) --- updated-dependencies: - dependency-name: fsdocs-tool dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .config/dotnet-tools.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index b2e6f532a3..3b9218dee4 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "fsdocs-tool": { - "version": "20.0.0-beta-001", + "version": "20.0.0-beta-002", "commands": [ "fsdocs" ] From 4e157a61332a2cc3d6d14cc15e57d76882298923 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 Feb 2024 22:44:09 +0000 Subject: [PATCH 29/37] Bump fsdocs-tool from 20.0.0-beta-002 to 20.0.0 Bumps [fsdocs-tool](https://github.com/fsprojects/FSharp.Formatting) from 20.0.0-beta-002 to 20.0.0. - [Changelog](https://github.com/fsprojects/FSharp.Formatting/blob/main/RELEASE_NOTES.md) - [Commits](https://github.com/fsprojects/FSharp.Formatting/commits) --- updated-dependencies: - dependency-name: fsdocs-tool dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .config/dotnet-tools.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 3b9218dee4..8de306df5f 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "fsdocs-tool": { - "version": "20.0.0-beta-002", + "version": "20.0.0", "commands": [ "fsdocs" ] From 71af261305663f04f242cff7393f519c44a5c381 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Apr 2024 22:11:31 +0000 Subject: [PATCH 30/37] Bump peaceiris/actions-gh-pages from 3 to 4 Bumps [peaceiris/actions-gh-pages](https://github.com/peaceiris/actions-gh-pages) from 3 to 4. - [Release notes](https://github.com/peaceiris/actions-gh-pages/releases) - [Changelog](https://github.com/peaceiris/actions-gh-pages/blob/main/CHANGELOG.md) - [Commits](https://github.com/peaceiris/actions-gh-pages/compare/v3...v4) --- updated-dependencies: - dependency-name: peaceiris/actions-gh-pages dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index bcbf3dc42b..2c2220bdc4 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -44,7 +44,7 @@ jobs: DOTNET_ROLL_FORWARD_TO_PRERELEASE: "1" run: dotnet fsdocs build --eval --sourcefolder fsharp --input fsharp/docs - name: Deploy - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: personal_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./output From 78fed0461241ca7e15ea273ab482462523105fab Mon Sep 17 00:00:00 2001 From: nojaf Date: Fri, 31 May 2024 09:42:02 +0200 Subject: [PATCH 31/37] Build entire solution --- .github/workflows/docs.yml | 2 +- .github/workflows/pr.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 2c2220bdc4..74a94b1d2a 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -33,7 +33,7 @@ jobs: - name: Restore FSharp.Compiler.Service.fsproj run: dotnet restore FSharp.Compiler.Service/FSharp.Compiler.Service.fsproj - name: Build FCS - run: dotnet build src/Compiler/FSharp.Compiler.Service.fsproj /p:BUILDING_USING_DOTNET=true + run: dotnet build FSharp.Compiler.Service.sln working-directory: ${{ env.FSHARP_DIR }} - name: Run fsdocs diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 84eb9ebfad..f215d56de8 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -29,7 +29,7 @@ jobs: run: dotnet restore FSharp.Compiler.Service/FSharp.Compiler.Service.fsproj - name: Build FCS - run: dotnet build src/Compiler/FSharp.Compiler.Service.fsproj /p:BUILDING_USING_DOTNET=true + run: dotnet build FSharp.Compiler.Service.sln working-directory: ${{ env.FSHARP_DIR }} - name: Run fsdocs From fcd774af0a512f4c0b81f8deeac3bcd65044977c Mon Sep 17 00:00:00 2001 From: nojaf Date: Fri, 31 May 2024 09:43:39 +0200 Subject: [PATCH 32/37] Bump fsdocs-tool --- .config/dotnet-tools.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 8de306df5f..8ac18d24ce 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "fsdocs-tool": { - "version": "20.0.0", + "version": "20.0.1", "commands": [ "fsdocs" ] From 94589bc42c3d5b79864a759c88a5dc23b92293fa Mon Sep 17 00:00:00 2001 From: nojaf Date: Fri, 7 Jun 2024 09:02:06 +0200 Subject: [PATCH 33/37] Bump docs tool to 21 beta --- .config/dotnet-tools.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 8ac18d24ce..8e8a9b5793 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,10 +3,11 @@ "isRoot": true, "tools": { "fsdocs-tool": { - "version": "20.0.1", + "version": "21.0.0-beta-001", "commands": [ "fsdocs" - ] + ], + "rollForward": false } } } \ No newline at end of file From 42fe92744d008aa991bd43a0c4d676d6313c1a39 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 Jun 2024 22:39:37 +0000 Subject: [PATCH 34/37] Bump fsdocs-tool from 21.0.0-beta-001 to 21.0.0-beta-002 Bumps [fsdocs-tool](https://github.com/fsprojects/FSharp.Formatting) from 21.0.0-beta-001 to 21.0.0-beta-002. - [Changelog](https://github.com/fsprojects/FSharp.Formatting/blob/main/RELEASE_NOTES.md) - [Commits](https://github.com/fsprojects/FSharp.Formatting/commits) --- updated-dependencies: - dependency-name: fsdocs-tool dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .config/dotnet-tools.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 8e8a9b5793..cfc2573cce 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "fsdocs-tool": { - "version": "21.0.0-beta-001", + "version": "21.0.0-beta-002", "commands": [ "fsdocs" ], From 57f883129e884b731c6807147765a27c4737700a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 22 Aug 2024 22:49:45 +0000 Subject: [PATCH 35/37] Bump fsdocs-tool from 21.0.0-beta-002 to 21.0.0-beta-003 Bumps [fsdocs-tool](https://github.com/fsprojects/FSharp.Formatting) from 21.0.0-beta-002 to 21.0.0-beta-003. - [Changelog](https://github.com/fsprojects/FSharp.Formatting/blob/main/RELEASE_NOTES.md) - [Commits](https://github.com/fsprojects/FSharp.Formatting/commits) --- updated-dependencies: - dependency-name: fsdocs-tool dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .config/dotnet-tools.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index cfc2573cce..ea0570e239 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "fsdocs-tool": { - "version": "21.0.0-beta-002", + "version": "21.0.0-beta-003", "commands": [ "fsdocs" ], From aabf9e58c3e078c553577cbe924a370608abeb69 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 20 Nov 2024 23:04:28 +0000 Subject: [PATCH 36/37] Bump fsdocs-tool from 21.0.0-beta-003 to 21.0.0-beta-004 Bumps [fsdocs-tool](https://github.com/fsprojects/FSharp.Formatting) from 21.0.0-beta-003 to 21.0.0-beta-004. - [Changelog](https://github.com/fsprojects/FSharp.Formatting/blob/main/RELEASE_NOTES.md) - [Commits](https://github.com/fsprojects/FSharp.Formatting/commits) --- updated-dependencies: - dependency-name: fsdocs-tool dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .config/dotnet-tools.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index ea0570e239..e6c4a276ff 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "fsdocs-tool": { - "version": "21.0.0-beta-003", + "version": "21.0.0-beta-004", "commands": [ "fsdocs" ], From 4f57111a41c05f2335bd64f9a1cc8d6e81de1502 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 23 Apr 2025 22:45:59 +0000 Subject: [PATCH 37/37] Bump fsdocs-tool from 21.0.0-beta-004 to 21.0.0-beta-005 Bumps [fsdocs-tool](https://github.com/fsprojects/FSharp.Formatting) from 21.0.0-beta-004 to 21.0.0-beta-005. - [Changelog](https://github.com/fsprojects/FSharp.Formatting/blob/main/RELEASE_NOTES.md) - [Commits](https://github.com/fsprojects/FSharp.Formatting/commits) --- updated-dependencies: - dependency-name: fsdocs-tool dependency-version: 21.0.0-beta-005 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .config/dotnet-tools.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index e6c4a276ff..d6b5435816 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "fsdocs-tool": { - "version": "21.0.0-beta-004", + "version": "21.0.0-beta-005", "commands": [ "fsdocs" ],