Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[.NET] Update versions to 8 & 9 #10

Merged
merged 2 commits into from
Dec 19, 2024
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
4 changes: 2 additions & 2 deletions .github/actions/setup-dotnet/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ runs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.0.x
9.x.x

- name: Restore Dependencies
run: dotnet restore
Expand All @@ -30,4 +30,4 @@ runs:
if: ${{ inputs.build == 'true' }}
run: dotnet build --configuration Release --no-restore
working-directory: ./
shell: bash
shell: bash
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Aptos Dotnet SDK Changelog

All notable changes to the Aptos Python SDK will be captured in this file. This changelog is written by hand for now.

## Unreleased

- Remove support for .NET 6 and 7, add support for .NET 9

## Beta v0.0.15-beta
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<!-- There should only be one <DefaultVersion> in the file. If moved, it should be updated in the GitHub Actions workflow. -->
<DefaultVersion>0.0.15</DefaultVersion>
<DefaultTargetFrameworks>net8.0;net7.0;net6.0;netstandard2.1</DefaultTargetFrameworks>
<DefaultTargetFrameworks>net9.0;net8.0;netstandard2.1</DefaultTargetFrameworks>
<DefaultTestingFrameworks>net8.0</DefaultTestingFrameworks>
</PropertyGroup>

Expand All @@ -15,4 +15,4 @@
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
</PropertyGroup>
</Project>
</Project>
Loading