From 1403c9f002f3b09fb49008c48d7a324ee6dffb8f Mon Sep 17 00:00:00 2001 From: Denis Averin Date: Thu, 25 Jul 2024 15:13:31 +0700 Subject: [PATCH 1/4] Bump version to 24.7 --- README.md | 2 +- examples/GenerateQR/GenerateQR.csproj | 2 +- examples/ReadQR/ReadQR.csproj | 2 +- src/Aspose.BarCode.Cloud.Sdk.csproj | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9170e92..617a996 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [![Nuget](https://img.shields.io/nuget/v/Aspose.BarCode-Cloud)](https://www.nuget.org/packages/Aspose.BarCode-Cloud/) - API version: 3.0 -- SDK version: 24.6.0 +- SDK version: 24.7.0 ## Demo applications diff --git a/examples/GenerateQR/GenerateQR.csproj b/examples/GenerateQR/GenerateQR.csproj index b7bfddf..8a68a46 100644 --- a/examples/GenerateQR/GenerateQR.csproj +++ b/examples/GenerateQR/GenerateQR.csproj @@ -7,7 +7,7 @@ - + diff --git a/examples/ReadQR/ReadQR.csproj b/examples/ReadQR/ReadQR.csproj index b7bfddf..8a68a46 100644 --- a/examples/ReadQR/ReadQR.csproj +++ b/examples/ReadQR/ReadQR.csproj @@ -7,7 +7,7 @@ - + diff --git a/src/Aspose.BarCode.Cloud.Sdk.csproj b/src/Aspose.BarCode.Cloud.Sdk.csproj index 9a9683a..35bc118 100644 --- a/src/Aspose.BarCode.Cloud.Sdk.csproj +++ b/src/Aspose.BarCode.Cloud.Sdk.csproj @@ -23,11 +23,11 @@ Aspose.Barcode for Cloud allows you to control all aspects of the image and barc Aspose.BarCode-Cloud Aspose.BarCode Cloud SDK for .NET PackageIcon.png - 24.6.0 + 24.7.0 Aspose - 24.6.0.0 + 24.7.0.0 README.md - https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-dotnet/releases/tag/v24.6.0 + https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-dotnet/releases/tag/v24.7.0 true LICENSE.txt true From 8d06099284d1b7bb8ae5a4a1200aa61306fa1bdf Mon Sep 17 00:00:00 2001 From: Denis Averin Date: Mon, 1 Jul 2024 16:59:30 +0700 Subject: [PATCH 2/4] Add netcoreapp3.1 Remove Net7.0 from tests --- .github/workflows/dotnet-core.yml | 2 ++ README.md | 3 +-- Tests/Aspose.BarCode.Cloud.Sdk.Tests.csproj | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 82ab738..58a1789 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -16,6 +16,8 @@ jobs: # and https://github.com/dotnet/core/blob/main/releases.md # for versions include: + - dotnet-version: 3.1.x + framework: netcoreapp3.1 - dotnet-version: 6.0.x framework: net6.0 - dotnet-version: 7.0.x diff --git a/README.md b/README.md index 617a996..3c03130 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ This repository contains Aspose.BarCode Cloud SDK for .NET source code. This SDK Aspose.BarCode Cloud SDK for .NET provides cross-platform bindings for: -- .NET 5 and higher +- .NET 6 and higher - .NET Standard 2.0 and higher - .NET Core 3.1 and higher - .NET Framework 4.6.2 and higher @@ -320,4 +320,3 @@ Class | Method | HTTP request | Description - [Model.StructuredAppend](docs/StructuredAppend.md) - [Model.TextAlignment](docs/TextAlignment.md) - [Model.FileVersion](docs/FileVersion.md) - diff --git a/Tests/Aspose.BarCode.Cloud.Sdk.Tests.csproj b/Tests/Aspose.BarCode.Cloud.Sdk.Tests.csproj index e699f92..f1d83f4 100644 --- a/Tests/Aspose.BarCode.Cloud.Sdk.Tests.csproj +++ b/Tests/Aspose.BarCode.Cloud.Sdk.Tests.csproj @@ -1,7 +1,7 @@ - net462;net480;net481;net6.0;net7.0;net8.0 + net462;net480;net481;netcoreapp3.1;net6.0;net8.0 true true 8.0 From a56b3c127eb5350d5ff4169a8c75e15dd4dc9047 Mon Sep 17 00:00:00 2001 From: Denis Averin Date: Mon, 1 Jul 2024 17:04:35 +0700 Subject: [PATCH 3/4] Add Net5.0 --- .github/workflows/dotnet-core.yml | 4 ++-- README.md | 2 +- Tests/Aspose.BarCode.Cloud.Sdk.Tests.csproj | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 58a1789..c55e2a3 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -18,10 +18,10 @@ jobs: include: - dotnet-version: 3.1.x framework: netcoreapp3.1 + - dotnet-version: 5.0.x + framework: net5.0 - dotnet-version: 6.0.x framework: net6.0 - - dotnet-version: 7.0.x - framework: net7.0 - dotnet-version: 8.0.x framework: net8.0 diff --git a/README.md b/README.md index 3c03130..58eb29b 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ This repository contains Aspose.BarCode Cloud SDK for .NET source code. This SDK Aspose.BarCode Cloud SDK for .NET provides cross-platform bindings for: -- .NET 6 and higher +- .NET 5 and higher - .NET Standard 2.0 and higher - .NET Core 3.1 and higher - .NET Framework 4.6.2 and higher diff --git a/Tests/Aspose.BarCode.Cloud.Sdk.Tests.csproj b/Tests/Aspose.BarCode.Cloud.Sdk.Tests.csproj index f1d83f4..41f9c0e 100644 --- a/Tests/Aspose.BarCode.Cloud.Sdk.Tests.csproj +++ b/Tests/Aspose.BarCode.Cloud.Sdk.Tests.csproj @@ -1,7 +1,7 @@ - net462;net480;net481;netcoreapp3.1;net6.0;net8.0 + net462;net480;net481;netcoreapp3.1;net5.0;net6.0;net8.0 true true 8.0 From eb6bf77457263f071b86ba8e2ea6b70355963146 Mon Sep 17 00:00:00 2001 From: Denis Averin Date: Thu, 25 Jul 2024 15:39:43 +0700 Subject: [PATCH 4/4] Add comments --- Makefile | 1 + README.md | 1 + 2 files changed, 2 insertions(+) diff --git a/Makefile b/Makefile index ddebccd..2a4b398 100644 --- a/Makefile +++ b/Makefile @@ -16,6 +16,7 @@ format: .PHONY: format-doc format-doc: + # Remove trailing white space find . -iname "*.md" -exec sed -i -e 's_[[:space:]]*$$__' {} \; .PHONY: test diff --git a/README.md b/README.md index 58eb29b..617a996 100644 --- a/README.md +++ b/README.md @@ -320,3 +320,4 @@ Class | Method | HTTP request | Description - [Model.StructuredAppend](docs/StructuredAppend.md) - [Model.TextAlignment](docs/TextAlignment.md) - [Model.FileVersion](docs/FileVersion.md) +