Skip to content

Commit b782e4c

Browse files
bgijzenBas Gijzen
andauthored
Updating dependencies and .NET version (#79)
* Updating dependencies * Bumping version * Updating build versions --------- Co-authored-by: Bas Gijzen <[email protected]>
1 parent dbbf597 commit b782e4c

File tree

5 files changed

+18
-11
lines changed

5 files changed

+18
-11
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ jobs:
1616
uses: actions/setup-dotnet@v4
1717
with:
1818
dotnet-version: |
19-
6.0.x
20-
7.0.x
19+
8.0.x
2120
- name: Restore dependencies
2221
run: dotnet restore
2322
- name: Build

.github/workflows/nuget.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ jobs:
1515
uses: actions/setup-dotnet@v4
1616
with:
1717
dotnet-version: |
18-
6.0.x
19-
7.0.x
18+
8.0.x
2019
- name: Restore dependencies
2120
run: dotnet restore
2221
- name: Build

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [2.12.0] - 2025-08-01
8+
### Updated
9+
- Updated dependencies and .NET version
10+
711
## [2.11.1] - 2025-01-31
812
### Added
913
- Derived type declarations on `SuggestionBase`

CM.Text.Tests/CM.Text.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77

CM.Text/CM.Text.csproj

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;net7.0</TargetFrameworks>
5-
<Authors>CM Text</Authors>
4+
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
5+
<Authors>CM.com Messaging team</Authors>
66
<Company>CM.com</Company>
77
<Product>CM Text SDK</Product>
88
<Description>A software development kit to provide ways to interact with CM.com's Text/messaging service.</Description>
@@ -13,13 +13,14 @@
1313
<PackageLicenseFile>LICENSE</PackageLicenseFile>
1414
<PackageIcon>icon.png</PackageIcon>
1515
<PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../CHANGELOG.md"))</PackageReleaseNotes>
16-
<Version>2.11.1</Version>
16+
<Version>2.12.0</Version>
1717
<PackageProjectUrl>https://github.com/cmdotcom/text-sdk-dotnet</PackageProjectUrl>
1818
<NeutralLanguage>en</NeutralLanguage>
1919
<GenerateDocumentationFile>true</GenerateDocumentationFile>
20-
<AssemblyVersion>2.11.1</AssemblyVersion>
21-
<FileVersion>2.11.1</FileVersion>
20+
<AssemblyVersion>2.12.0</AssemblyVersion>
21+
<FileVersion>2.12.0</FileVersion>
2222
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
23+
<PackageReadmeFile>README.md</PackageReadmeFile>
2324
</PropertyGroup>
2425

2526
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
@@ -63,7 +64,7 @@
6364
</ItemGroup>
6465

6566
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
66-
<PackageReference Include="System.Text.Json" Version="8.0.5" />
67+
<PackageReference Include="System.Text.Json" Version="9.0.7" />
6768
</ItemGroup>
6869

6970
<ItemGroup>
@@ -73,6 +74,10 @@
7374

7475
<None Include="$(MSBuildProjectDirectory)/../icon.png" Pack="true" Visible="false" PackagePath="" />
7576
<None Include="$(MSBuildProjectDirectory)/../LICENSE" Pack="true" PackagePath="" />
77+
<None Include="../README.md">
78+
<Pack>True</Pack>
79+
<PackagePath>\</PackagePath>
80+
</None>
7681

7782
</ItemGroup>
7883

0 commit comments

Comments
 (0)