Skip to content

Commit

Permalink
[.NET] Update versions to 8 & 9
Browse files Browse the repository at this point in the history
Version 6 and 7 are no longer supported, so we will update it
accordingly
  • Loading branch information
gregnazario committed Dec 18, 2024
1 parent 6a3563d commit 8e32a14
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
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>

0 comments on commit 8e32a14

Please sign in to comment.