From f70f9b8b58cecf64c02794a8b9bd9a132fc67310 Mon Sep 17 00:00:00 2001 From: IgorKoval Date: Mon, 12 Aug 2024 23:10:53 +0300 Subject: [PATCH 1/2] Bump version ever_client 1.48.0 --- packages/lib-node/lib/Cargo.toml | 2 +- packages/lib-react-native/android/lib/Cargo.toml | 2 +- packages/lib-react-native/ios/lib/Cargo.toml | 2 +- packages/lib-web/lib/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/lib-node/lib/Cargo.toml b/packages/lib-node/lib/Cargo.toml index e29abbbb..375e06b4 100644 --- a/packages/lib-node/lib/Cargo.toml +++ b/packages/lib-node/lib/Cargo.toml @@ -10,7 +10,7 @@ crate-type = [ 'staticlib' ] [dependencies] libc = '0.2' -ever_client = { git = 'https://github.com/everx-labs/ever-sdk.git', tag = '1.47.0', default-features = false, features = [ 'std', 'rustls-tls-webpki-roots' ] } +ever_client = { git = 'https://github.com/everx-labs/ever-sdk.git', tag = '1.48.0', default-features = false, features = [ 'std', 'rustls-tls-webpki-roots' ] } [profile.release] lto = true diff --git a/packages/lib-react-native/android/lib/Cargo.toml b/packages/lib-react-native/android/lib/Cargo.toml index 2b0de563..e9959e43 100644 --- a/packages/lib-react-native/android/lib/Cargo.toml +++ b/packages/lib-react-native/android/lib/Cargo.toml @@ -12,7 +12,7 @@ crate-type = [ 'cdylib' ] openssl-sys = { version = "0.9.97", features = [ "vendored" ] } lazy_static = '1.4.0' jni = { default-features = false, version = '0.12.0' } -ever_client = { git = 'https://github.com/everx-labs/ever-sdk.git', tag = '1.47.0' } +ever_client = { git = 'https://github.com/everx-labs/ever-sdk.git', tag = '1.48.0' } [profile.release] lto = true diff --git a/packages/lib-react-native/ios/lib/Cargo.toml b/packages/lib-react-native/ios/lib/Cargo.toml index 5f91645e..a1654a70 100644 --- a/packages/lib-react-native/ios/lib/Cargo.toml +++ b/packages/lib-react-native/ios/lib/Cargo.toml @@ -10,7 +10,7 @@ crate-type = [ 'staticlib' ] [dependencies] libc = '0.2' -ever_client = { git = 'https://github.com/everx-labs/ever-sdk.git', tag = '1.47.0', default-features = false, features = [ 'std', 'rustls-tls-webpki-roots' ] } +ever_client = { git = 'https://github.com/everx-labs/ever-sdk.git', tag = '1.48.0', default-features = false, features = [ 'std', 'rustls-tls-webpki-roots' ] } [profile.release] lto = true diff --git a/packages/lib-web/lib/Cargo.toml b/packages/lib-web/lib/Cargo.toml index 13209f19..7ea12025 100644 --- a/packages/lib-web/lib/Cargo.toml +++ b/packages/lib-web/lib/Cargo.toml @@ -28,7 +28,7 @@ lazy_static = '1.4.0' # just to fix building of rand for WASM: getrandom = { default-features = false, features = [ 'js' ], version = '0.2.2' } -ever_client = { git = 'https://github.com/everx-labs/ever-sdk.git', tag = '1.47.0', default-features = false, features = [ 'wasm' ] } +ever_client = { git = 'https://github.com/everx-labs/ever-sdk.git', tag = '1.48.0', default-features = false, features = [ 'wasm' ] } [dependencies.web-sys] version = '0.3.57' From 2e5651aae829b827537432ea2877c3cce2b05a94 Mon Sep 17 00:00:00 2001 From: AtomXY Date: Tue, 13 Aug 2024 11:12:21 +0300 Subject: [PATCH 2/2] Up version Changelog --- CHANGELOG.md | 6 ++++++ lerna.json | 2 +- packages/cli/package.json | 6 +++--- packages/core/package.json | 2 +- packages/core/src/version.ts | 2 +- packages/lib-node/lib/Cargo.toml | 2 +- packages/lib-node/package.json | 2 +- packages/lib-react-native-jsi/package.json | 2 +- packages/lib-react-native/android/lib/Cargo.toml | 2 +- packages/lib-react-native/ios/lib/Cargo.toml | 2 +- packages/lib-react-native/package.json | 2 +- packages/lib-web/lib/Cargo.toml | 2 +- packages/lib-web/package.json | 2 +- packages/tests-node/package.json | 2 +- packages/tests-react-native-jsi/package.json | 2 +- packages/tests-react-native/package.json | 2 +- packages/tests-web/package.json | 2 +- packages/tests/package.json | 2 +- 18 files changed, 25 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d37a905f..75498333 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ All notable changes to this project will be documented in this file. +## [1.48.0] – 2024-08-13 + +### New + +- Updating the version according to the main project + ## [1.47.0] – 2024-07-12 ### New diff --git a/lerna.json b/lerna.json index cd45b46e..5072ff2f 100644 --- a/lerna.json +++ b/lerna.json @@ -3,7 +3,7 @@ "packages": [ "packages/*" ], - "version": "1.47.0", + "version": "1.48.0", "command": { "version": { "message": "Release" diff --git a/packages/cli/package.json b/packages/cli/package.json index 837d4d3e..6014b87e 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@eversdk/cli", - "version": "1.47.0", + "version": "1.48.0", "description": "Evercloud CLI", "homepage": "https://everx.dev/", "repository": { @@ -53,8 +53,8 @@ ], "dependencies": { "@eversdk/appkit": "^0.3.8", - "@eversdk/core": "^1.47.0", - "@eversdk/lib-node": "^1.47.0", + "@eversdk/core": "^1.48.0", + "@eversdk/lib-node": "^1.48.0", "commander": "^10.0.0", "dotenv": "^16.0.3", "everdev": "^1.7.0", diff --git a/packages/core/package.json b/packages/core/package.json index 2159688f..91f212de 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@eversdk/core", - "version": "1.47.0", + "version": "1.48.0", "description": "TON Client for Java Script", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/core/src/version.ts b/packages/core/src/version.ts index 105b0415..553a4829 100644 --- a/packages/core/src/version.ts +++ b/packages/core/src/version.ts @@ -1 +1 @@ -export const packageVersion = "1.47.0"; +export const packageVersion = "1.48.0"; diff --git a/packages/lib-node/lib/Cargo.toml b/packages/lib-node/lib/Cargo.toml index 375e06b4..bcb23cbe 100644 --- a/packages/lib-node/lib/Cargo.toml +++ b/packages/lib-node/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = 'ever_sdk_node_addon' -version = '1.47.0' +version = '1.48.0' authors = [ 'TON Labs' ] license = 'Apache-2.0' diff --git a/packages/lib-node/package.json b/packages/lib-node/package.json index cfabe1ca..a460b884 100644 --- a/packages/lib-node/package.json +++ b/packages/lib-node/package.json @@ -1,6 +1,6 @@ { "name": "@eversdk/lib-node", - "version": "1.47.0", + "version": "1.48.0", "description": "TON Client NodeJs AddOn", "repository": { "type": "git", diff --git a/packages/lib-react-native-jsi/package.json b/packages/lib-react-native-jsi/package.json index 18bb89ed..a1a8e612 100644 --- a/packages/lib-react-native-jsi/package.json +++ b/packages/lib-react-native-jsi/package.json @@ -1,6 +1,6 @@ { "name": "@eversdk/lib-react-native-jsi", - "version": "1.47.0", + "version": "1.48.0", "description": "TON Client React Native JSI Module", "main": "lib/commonjs/index", "module": "lib/module/index", diff --git a/packages/lib-react-native/android/lib/Cargo.toml b/packages/lib-react-native/android/lib/Cargo.toml index e9959e43..bd4b64a4 100644 --- a/packages/lib-react-native/android/lib/Cargo.toml +++ b/packages/lib-react-native/android/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = 'ever_sdk_react_native_android' -version = '1.47.0' +version = '1.48.0' authors = [ 'TON Labs' ] license = 'Apache-2.0' diff --git a/packages/lib-react-native/ios/lib/Cargo.toml b/packages/lib-react-native/ios/lib/Cargo.toml index a1654a70..2b78d027 100644 --- a/packages/lib-react-native/ios/lib/Cargo.toml +++ b/packages/lib-react-native/ios/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = 'ever_sdk_react_native_ios' -version = '1.47.0' +version = '1.48.0' authors = [ 'TON Labs' ] license = 'Apache-2.0' diff --git a/packages/lib-react-native/package.json b/packages/lib-react-native/package.json index 15c8dd6b..1cd550d7 100644 --- a/packages/lib-react-native/package.json +++ b/packages/lib-react-native/package.json @@ -1,6 +1,6 @@ { "name": "@eversdk/lib-react-native", - "version": "1.47.0", + "version": "1.48.0", "description": "TON Client React Native Module", "main": "index.js", "repository": { diff --git a/packages/lib-web/lib/Cargo.toml b/packages/lib-web/lib/Cargo.toml index 7ea12025..d8ea75c5 100644 --- a/packages/lib-web/lib/Cargo.toml +++ b/packages/lib-web/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = 'ever_sdk_wasm_module' -version = '1.47.0' +version = '1.48.0' edition = '2018' description = 'TON Client WASM binding' license = 'Apache-2.0' diff --git a/packages/lib-web/package.json b/packages/lib-web/package.json index c3936cc8..6729b9bd 100644 --- a/packages/lib-web/package.json +++ b/packages/lib-web/package.json @@ -1,6 +1,6 @@ { "name": "@eversdk/lib-web", - "version": "1.47.0", + "version": "1.48.0", "description": "TON Client WASM module for browsers", "main": "index.js", "repository": { diff --git a/packages/tests-node/package.json b/packages/tests-node/package.json index 572cf091..d12e1076 100644 --- a/packages/tests-node/package.json +++ b/packages/tests-node/package.json @@ -1,6 +1,6 @@ { "name": "@eversdk/tests-node", - "version": "1.47.0", + "version": "1.48.0", "private": true, "description": "TON Client Tests runner on NodeJs", "main": "index.js", diff --git a/packages/tests-react-native-jsi/package.json b/packages/tests-react-native-jsi/package.json index fd4c27fe..aaa8c82f 100644 --- a/packages/tests-react-native-jsi/package.json +++ b/packages/tests-react-native-jsi/package.json @@ -1,6 +1,6 @@ { "name": "@eversdk/tests-react-native-jsi", - "version": "1.47.0", + "version": "1.48.0", "private": true, "main": "index.js", "browser": true, diff --git a/packages/tests-react-native/package.json b/packages/tests-react-native/package.json index 0fcf7253..b9c360cb 100644 --- a/packages/tests-react-native/package.json +++ b/packages/tests-react-native/package.json @@ -1,6 +1,6 @@ { "name": "@eversdk/tests-react-native", - "version": "1.47.0", + "version": "1.48.0", "private": true, "main": "index.js", "browser": true, diff --git a/packages/tests-web/package.json b/packages/tests-web/package.json index de024fa8..e1024fd9 100644 --- a/packages/tests-web/package.json +++ b/packages/tests-web/package.json @@ -1,6 +1,6 @@ { "name": "@eversdk/tests-web", - "version": "1.47.0", + "version": "1.48.0", "private": true, "description": "TON Client WASM module tests runner", "scripts": { diff --git a/packages/tests/package.json b/packages/tests/package.json index 63874b8c..b4a6d1d3 100644 --- a/packages/tests/package.json +++ b/packages/tests/package.json @@ -1,6 +1,6 @@ { "name": "@eversdk/tests", - "version": "1.47.0", + "version": "1.48.0", "private": true, "description": "TON Client Tests", "main": "dist/index.js",