Skip to content

Commit

Permalink
Release 22.12 (#53)
Browse files Browse the repository at this point in the history
* Version up

DotCodeMask mark as DEPRECATED
Delimiter formatting

* Bump Newtonsoft.Json from 13.0.1 to 13.0.2 in /src (#52)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
ivankamkin and dependabot[bot] authored Dec 19, 2022
1 parent c508db1 commit c892b2a
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,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: 22.11.0
- SDK version: 22.12.0

## Demo applications

Expand Down Expand Up @@ -216,7 +216,7 @@ All Aspose.BarCode for Cloud SDKs, helper scripts and templates are licensed und
All URIs are relative to *<https://api.aspose.cloud/v3.0>*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
----- | ------ | ------------ | -----------
*BarcodeApi* | [**GetBarcodeGenerate**](docs/BarcodeApi.md#getbarcodegenerate) | **GET** /barcode/generate | Generate barcode.
*BarcodeApi* | [**GetBarcodeRecognize**](docs/BarcodeApi.md#getbarcoderecognize) | **GET** /barcode/{name}/recognize | Recognize barcode from a file on server.
*BarcodeApi* | [**PostBarcodeRecognizeFromUrlOrContent**](docs/BarcodeApi.md#postbarcoderecognizefromurlorcontent) | **POST** /barcode/recognize | Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image or encoded with base64.
Expand Down
2 changes: 1 addition & 1 deletion docs/DotCodeParams.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
Name | Type | Description | Notes
---- | ---- | ----------- | -----
**AspectRatio** | **double?** | Height/Width ratio of 2D BarCode module. | [optional]
**DotCodeMask** | **int?** | Mask of Dotcode barcode. Default value: -1. | [optional]
**DotCodeMask** | **int?** | DEPRECATED: DotCodeMask is now calculated automatically | [optional]

2 changes: 1 addition & 1 deletion examples/GenerateQR/GenerateQR.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Aspose.BarCode-Cloud" Version="22.11.0" />
<PackageReference Include="Aspose.BarCode-Cloud" Version="22.12.0" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion examples/ReadQR/ReadQR.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Aspose.BarCode-Cloud" Version="22.11.0" />
<PackageReference Include="Aspose.BarCode-Cloud" Version="22.12.0" />
</ItemGroup>

</Project>
6 changes: 3 additions & 3 deletions src/Aspose.BarCode.Cloud.Sdk.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ Aspose.Barcode for Cloud allows you to control all aspects of the image and barc
<PackageId>Aspose.BarCode-Cloud</PackageId>
<Product>Aspose.BarCode Cloud SDK for .NET</Product>
<PackageIcon>PackageIcon.png</PackageIcon>
<Version>22.11.0</Version>
<Version>22.12.0</Version>
<Authors>asposecloud</Authors>
<AssemblyVersion>22.11.0.0</AssemblyVersion>
<AssemblyVersion>22.12.0.0</AssemblyVersion>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

Expand All @@ -31,7 +31,7 @@ Aspose.Barcode for Cloud allows you to control all aspects of the image and barc
</ItemGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Model/DotCodeParams.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class DotCodeParams : IToString
public double? AspectRatio { get; set; }

/// <summary>
/// Mask of Dotcode barcode. Default value: -1.
/// DEPRECATED: DotCodeMask is now calculated automatically
/// </summary>
public int? DotCodeMask { get; set; }

Expand Down

0 comments on commit c892b2a

Please sign in to comment.