Skip to content

Commit a8b11d0

Browse files
authored
Release 23.7 (#55)
* Update version to 23.7.0 * New code generated from updated Swagger specification
1 parent 6fcdfcb commit a8b11d0

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![Supported PHP Versions](https://img.shields.io/packagist/dependency-v/aspose/barcode-cloud-php/php)](https://packagist.org/packages/aspose/barcode-cloud-php)
77

88
- API version: 3.0
9-
- Package version: 23.6.0
9+
- Package version: 23.7.0
1010
- Supported PHP versions: ">=7.4 || >=8.0"
1111

1212
## Demo applications

docs/Model/DataMatrixParams.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ Name | Type | Description | Notes
55
---- | ---- | ----------- | -----
66
**aspect_ratio** | **double** | Height/Width ratio of 2D BarCode module | [optional]
77
**text_encoding** | **string** | Encoding of codetext. | [optional]
8-
**columns** | **int** | Columns count. | [optional]
8+
**columns** | **int** | DEPRECATED: Will be replaced with 'DataMatrix.Version' in the next release Columns count. | [optional]
99
**data_matrix_ecc** | [**\Aspose\BarCode\Model\DataMatrixEccType**](DataMatrixEccType.md) | Datamatrix ECC type. Default value: DataMatrixEccType.Ecc200. | [optional]
1010
**data_matrix_encode_mode** | [**\Aspose\BarCode\Model\DataMatrixEncodeMode**](DataMatrixEncodeMode.md) | Encode mode of Datamatrix barcode. Default value: DataMatrixEncodeMode.Auto. | [optional]
11-
**rows** | **int** | Rows count. | [optional]
11+
**rows** | **int** | DEPRECATED: Will be replaced with 'DataMatrix.Version' in the next release Rows count. | [optional]
1212
**macro_characters** | [**\Aspose\BarCode\Model\MacroCharacter**](MacroCharacter.md) | Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. Can be used only with DataMatrixEccType.Ecc200 or DataMatrixEccType.EccAuto. Cannot be used with EncodeTypes.GS1DataMatrix Default value: MacroCharacters.None. | [optional]
1313

1414
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

scripts/check-badges.bash

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,21 @@ readme_file=$1
55

66
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
77

8-
pushd "${SCRIPT_DIR}/.."
8+
pushd "${SCRIPT_DIR}/.." >/dev/null
99

10-
(grep -oP '[^/]+\.yml(?=/badge.svg)' "${readme_file}" || (echo "No badges in ${readme_file}" ; exit 1)) | while read -r workflow_file; do
10+
(grep -oP '[^/]+\.yml(?=/badge.svg)' "${readme_file}" || (>&2 echo "No badges in ${readme_file}" ; exit 1)) | while read -r workflow_file; do
1111
path_to_workflow=".github/workflows/${workflow_file}"
1212
if [ ! -e "${path_to_workflow}" ]
1313
then
14-
echo "Error, workflow does not exist \"${path_to_workflow}\""
14+
>&2 echo "Error, workflow does not exist \"${path_to_workflow}\""
1515
exit 1
1616
fi
1717
done
1818

1919
(grep -oP '[^/]+\.yml/badge.svg(?!\?branch=main)' "${readme_file}" || echo ) | while read -r badge_without_branch; do
2020
if [ -z "${badge_without_branch}" ]; then continue; fi
21-
echo "Badge without branch \"${badge_without_branch}\""
21+
>&2 echo "Badge without branch \"${badge_without_branch}\""
2222
exit 1
2323
done
2424

25-
popd
25+
popd >/dev/null

src/Aspose/BarCode/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class Configuration implements JsonSerializable
2323
*
2424
* @var string
2525
*/
26-
protected $clientVersion = '23.6.0';
26+
protected $clientVersion = '23.7.0';
2727

2828
/**
2929
* ClientId for API

src/Aspose/BarCode/Model/DataMatrixEncodeMode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
/**
4040
* DataMatrixEncodeMode
4141
*
42-
* @description
42+
* @description DataMatrix encoder's encoding mode, default to Auto
4343
*/
4444
class DataMatrixEncodeMode
4545
{

src/Aspose/BarCode/Model/DataMatrixParams.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ public function getColumns()
303303
/**
304304
* Sets columns
305305
*
306-
* @param int $columns Columns count.
306+
* @param int $columns DEPRECATED: Will be replaced with 'DataMatrix.Version' in the next release Columns count.
307307
*
308308
* @return $this
309309
*/
@@ -375,7 +375,7 @@ public function getRows()
375375
/**
376376
* Sets rows
377377
*
378-
* @param int $rows Rows count.
378+
* @param int $rows DEPRECATED: Will be replaced with 'DataMatrix.Version' in the next release Rows count.
379379
*
380380
* @return $this
381381
*/

0 commit comments

Comments
 (0)