Skip to content

Commit cd51b6b

Browse files
Release 24.10 (#97)
* Version of SDK updated --------- Co-authored-by: Denis Averin <59285247+Denis-Averin@users.noreply.github.com>
1 parent 6190fd8 commit cd51b6b

File tree

5 files changed

+13
-9
lines changed

5 files changed

+13
-9
lines changed

.github/workflows/try-publish.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@ jobs:
1818
- name: Use the latest versiob of Node.js
1919
uses: actions/setup-node@v4
2020
with:
21-
node-version: latest
21+
# Switch node-version: latest (23) to 22 for a while
22+
# https://github.com/nodejs/node/issues/55410
23+
# npm pack crash in Node 23
24+
# node-version: latest
25+
node-version: 22.x
2226
cache: 'npm'
2327
- name: Init
2428
run: make init

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![npm](https://img.shields.io/npm/v/aspose-barcode-cloud-node)](https://www.npmjs.com/package/aspose-barcode-cloud-node)
66

77
+ API version: 3.0
8-
+ Package version: 24.9.0
8+
+ Package version: 24.10.0
99

1010
## Demo applications
1111

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aspose-barcode-cloud-node",
3-
"version": "24.9.0",
3+
"version": "24.10.0",
44
"description": "Aspose.BarCode Cloud SDK for Node.js",
55
"homepage": "https://products.aspose.cloud/barcode/nodejs",
66
"repository": {

src/api.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ let typeMap: { [index: string]: any } = {
338338
export class BarcodeApi {
339339
protected defaultHeaders: any = {
340340
'x-aspose-client': 'nodejs sdk',
341-
'x-aspose-client-version': '24.9.0',
341+
'x-aspose-client-version': '24.10.0',
342342
};
343343
protected _configuration: Configuration;
344344
private _client: HttpClient;
@@ -1484,7 +1484,7 @@ export class BarcodeApi {
14841484
export class FileApi {
14851485
protected defaultHeaders: any = {
14861486
'x-aspose-client': 'nodejs sdk',
1487-
'x-aspose-client-version': '24.9.0',
1487+
'x-aspose-client-version': '24.10.0',
14881488
};
14891489
protected _configuration: Configuration;
14901490
private _client: HttpClient;
@@ -1752,7 +1752,7 @@ export class FileApi {
17521752
export class FolderApi {
17531753
protected defaultHeaders: any = {
17541754
'x-aspose-client': 'nodejs sdk',
1755-
'x-aspose-client-version': '24.9.0',
1755+
'x-aspose-client-version': '24.10.0',
17561756
};
17571757
protected _configuration: Configuration;
17581758
private _client: HttpClient;
@@ -1994,7 +1994,7 @@ export class FolderApi {
19941994
export class StorageApi {
19951995
protected defaultHeaders: any = {
19961996
'x-aspose-client': 'nodejs sdk',
1997-
'x-aspose-client-version': '24.9.0',
1997+
'x-aspose-client-version': '24.10.0',
19981998
};
19991999
protected _configuration: Configuration;
20002000
private _client: HttpClient;

0 commit comments

Comments
 (0)