Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-new-library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion source/Atmoos.Sphere.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!-- Build info common to all projects within the atmoos sphere project -->

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Import Project="../Atmoos.Sphere.Pack.targets" />

<PropertyGroup>
<Version>0.1.0</Version>
<Version>0.1.1</Version>
<PackageTags>functional programming, functors, monads</PackageTags>
<Description>Atmoos Sphere Functional: A handful of types that support a more functional approach to C#.</Description>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion source/Atmoos.Sphere.Pack.targets
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.1.1" PrivateAssets="All" />
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.2.39" PrivateAssets="All" />
</ItemGroup>

<Target Name="CopyNugetIcon" BeforeTargets="Build">
Expand Down
4 changes: 2 additions & 2 deletions source/Atmoos.Sphere.Test.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<ItemGroup>
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.2">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
1 change: 1 addition & 0 deletions source/Atmoos.Sphere.Test/Async/AsyncEnumerableTest.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using Atmoos.Sphere.Async;
using AsyncEnumerable = Atmoos.Sphere.Async.AsyncEnumerable;

namespace Atmoos.Sphere.Test.Async;

Expand Down
2 changes: 1 addition & 1 deletion source/Atmoos.Sphere/Atmoos.Sphere.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Import Project="../Atmoos.Sphere.Pack.targets" />

<PropertyGroup>
<Version>0.4.0</Version>
<Version>0.4.1</Version>
<Description>Atmoos Sphere: Utilities, mechanisms, and extension methods.</Description>
</PropertyGroup>

Expand Down
Loading