From 93828971152271f5dfdecd74afe1e0ba60f9e066 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20K=C3=A4gi?= Date: Sat, 6 Dec 2025 12:04:50 +0100 Subject: [PATCH 1/4] upgrade github actions --- .github/workflows/dotnet.yml | 8 ++++---- .github/workflows/publish-library.yml | 6 +++--- .github/workflows/publish-new-library.yml | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 36e0cc9..d0706e7 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -16,7 +16,7 @@ on: env: DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 DOTNET_NOLOGO: true - DotNetVersion: 9.0.x + DotNetVersion: 10.0.x defaults: run: @@ -35,9 +35,9 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Setup .NET - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 with: dotnet-version: ${{ env.DotNetVersion }} - name: Restore @@ -64,7 +64,7 @@ jobs: indicators: true output: both - name: Add Coverage as PR Comment - uses: marocchino/sticky-pull-request-comment@v2 + uses: marocchino/sticky-pull-request-comment@v2.9.4 if: matrix.os == 'ubuntu-latest' && github.event_name == 'pull_request' with: recreate: true diff --git a/.github/workflows/publish-library.yml b/.github/workflows/publish-library.yml index 1660a30..a163bcb 100644 --- a/.github/workflows/publish-library.yml +++ b/.github/workflows/publish-library.yml @@ -13,16 +13,16 @@ on: env: DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 DOTNET_NOLOGO: true - DotNetVersion: 9.0.x + DotNetVersion: 10.0.x jobs: publish: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Setup .NET - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 with: dotnet-version: ${{ env.DotNetVersion }} - name: Publish diff --git a/.github/workflows/publish-new-library.yml b/.github/workflows/publish-new-library.yml index 75896da..8c57f04 100644 --- a/.github/workflows/publish-new-library.yml +++ b/.github/workflows/publish-new-library.yml @@ -13,16 +13,16 @@ on: env: DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 DOTNET_NOLOGO: true - DotNetVersion: 9.0.x + DotNetVersion: 10.0.x jobs: publish: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Setup .NET - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 with: dotnet-version: ${{ env.DotNetVersion }} - name: Publish From 3f5f49e9efa7c3890696ffeb6dbc3c4eb39f2480 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20K=C3=A4gi?= Date: Sat, 6 Dec 2025 12:06:46 +0100 Subject: [PATCH 2/4] upgrade references & .Net version --- source/Atmoos.Sphere.Build.props | 2 +- source/Atmoos.Sphere.Pack.targets | 2 +- source/Atmoos.Sphere.Test.props | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/source/Atmoos.Sphere.Build.props b/source/Atmoos.Sphere.Build.props index ac8173f..d62ad13 100644 --- a/source/Atmoos.Sphere.Build.props +++ b/source/Atmoos.Sphere.Build.props @@ -2,7 +2,7 @@ - net9.0 + net10.0 enable enable diff --git a/source/Atmoos.Sphere.Pack.targets b/source/Atmoos.Sphere.Pack.targets index ee49cbb..6148b1c 100644 --- a/source/Atmoos.Sphere.Pack.targets +++ b/source/Atmoos.Sphere.Pack.targets @@ -22,7 +22,7 @@ - + diff --git a/source/Atmoos.Sphere.Test.props b/source/Atmoos.Sphere.Test.props index f122704..2009e70 100644 --- a/source/Atmoos.Sphere.Test.props +++ b/source/Atmoos.Sphere.Test.props @@ -8,8 +8,8 @@ - - + + runtime; build; native; contentfiles; analyzers; buildtransitive all From 969bad71403fbef97ad2bb050223deb9f03b3192 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20K=C3=A4gi?= Date: Sat, 6 Dec 2025 12:08:51 +0100 Subject: [PATCH 3/4] bump library versions --- source/Atmoos.Sphere.Functional/Atmoos.Sphere.Functional.csproj | 2 +- source/Atmoos.Sphere/Atmoos.Sphere.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Atmoos.Sphere.Functional/Atmoos.Sphere.Functional.csproj b/source/Atmoos.Sphere.Functional/Atmoos.Sphere.Functional.csproj index 8356a16..371e8c1 100644 --- a/source/Atmoos.Sphere.Functional/Atmoos.Sphere.Functional.csproj +++ b/source/Atmoos.Sphere.Functional/Atmoos.Sphere.Functional.csproj @@ -3,7 +3,7 @@ - 0.1.0 + 0.1.1 functional programming, functors, monads Atmoos Sphere Functional: A handful of types that support a more functional approach to C#. diff --git a/source/Atmoos.Sphere/Atmoos.Sphere.csproj b/source/Atmoos.Sphere/Atmoos.Sphere.csproj index b4f7e58..e8e513d 100644 --- a/source/Atmoos.Sphere/Atmoos.Sphere.csproj +++ b/source/Atmoos.Sphere/Atmoos.Sphere.csproj @@ -3,7 +3,7 @@ - 0.4.0 + 0.4.1 Atmoos Sphere: Utilities, mechanisms, and extension methods. From 9b01c7d6fc160034ce2e8d844ac38df2f8a1a2b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20K=C3=A4gi?= Date: Sat, 6 Dec 2025 12:12:33 +0100 Subject: [PATCH 4/4] Fix ambigous reference --- source/Atmoos.Sphere.Test/Async/AsyncEnumerableTest.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/source/Atmoos.Sphere.Test/Async/AsyncEnumerableTest.cs b/source/Atmoos.Sphere.Test/Async/AsyncEnumerableTest.cs index 1f69f6b..cf6b392 100644 --- a/source/Atmoos.Sphere.Test/Async/AsyncEnumerableTest.cs +++ b/source/Atmoos.Sphere.Test/Async/AsyncEnumerableTest.cs @@ -1,4 +1,5 @@ using Atmoos.Sphere.Async; +using AsyncEnumerable = Atmoos.Sphere.Async.AsyncEnumerable; namespace Atmoos.Sphere.Test.Async;