Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"packages": [
"packages/*"
],
"version": "1.49.2",
"version": "1.49.3",
"command": {
"version": {
"message": "Release"
Expand Down
8 changes: 4 additions & 4 deletions packages/cli/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eversdk/cli",
"version": "1.49.2",
"version": "1.49.3",
"description": "Evercloud CLI",
"homepage": "https://everx.dev/",
"repository": {
Expand Down Expand Up @@ -53,8 +53,8 @@
],
"dependencies": {
"@eversdk/appkit": "^0.3.8",
"@eversdk/core": "^1.49.2",
"@eversdk/lib-node": "^1.49.2",
"@eversdk/core": "^1.49.3",
"@eversdk/lib-node": "^1.49.3",
"commander": "^10.0.0",
"dotenv": "^16.0.3",
"everdev": "^1.7.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eversdk/core",
"version": "1.49.2",
"version": "1.49.3",
"description": "TON Client for Java Script",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const packageVersion = "1.49.2";
export const packageVersion = "1.49.3";
4 changes: 2 additions & 2 deletions packages/lib-node/lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = 'ever_sdk_node_addon'
version = '1.49.1'
version = '1.49.3'
authors = [ 'TON Labs' ]
license = 'Apache-2.0'

Expand All @@ -10,7 +10,7 @@ crate-type = [ 'staticlib' ]

[dependencies]
libc = '0.2'
ever_client = { git = 'https://github.com/everx-labs/ever-sdk.git', tag = '1.49.2', default-features = false, features = [ 'std', 'rustls-tls-webpki-roots' ] }
ever_client = { git = 'https://github.com/everx-labs/ever-sdk.git', tag = '1.49.3', default-features = false, features = [ 'std', 'rustls-tls-webpki-roots' ] }

[profile.release]
lto = true
4 changes: 2 additions & 2 deletions packages/lib-node/lib/binding.cc
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ napi_value requestSync(napi_env env, napi_callback_info info) {

//--------------------------------------------------------- initialization

void unload(const napi_env env, void *data, void *hint) {
void unload(const napi_env__* env, void *data, void *hint) {
}

napi_value init(napi_env env, napi_value exports) {
Expand All @@ -254,7 +254,7 @@ napi_value init(napi_env env, napi_value exports) {
{"requestSync", nullptr, requestSync, nullptr, nullptr, nullptr, napi_default, nullptr},
};
CHECK(napi_define_properties(env, exports, 6, properties));
CHECK(napi_wrap(env, exports, nullptr, unload, nullptr, nullptr));
CHECK(napi_wrap(env, exports, nullptr, nullptr, nullptr, nullptr));
return exports;
}

Expand Down
2 changes: 1 addition & 1 deletion packages/lib-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eversdk/lib-node",
"version": "1.49.2",
"version": "1.49.3",
"description": "TON Client NodeJs AddOn",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/lib-react-native-jsi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eversdk/lib-react-native-jsi",
"version": "1.49.2",
"version": "1.49.3",
"description": "TON Client React Native JSI Module",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand Down
4 changes: 2 additions & 2 deletions packages/lib-react-native/android/lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = 'ever_sdk_react_native_android'
version = '1.49.1'
version = '1.49.3'
authors = [ 'TON Labs' ]
license = 'Apache-2.0'

Expand All @@ -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.49.2' }
ever_client = { git = 'https://github.com/everx-labs/ever-sdk.git', tag = '1.49.3' }

[profile.release]
lto = true
4 changes: 2 additions & 2 deletions packages/lib-react-native/ios/lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = 'ever_sdk_react_native_ios'
version = '1.49.1'
version = '1.49.3'
authors = [ 'TON Labs' ]
license = 'Apache-2.0'

Expand All @@ -10,7 +10,7 @@ crate-type = [ 'staticlib' ]

[dependencies]
libc = '0.2'
ever_client = { git = 'https://github.com/everx-labs/ever-sdk.git', tag = '1.49.2', default-features = false, features = [ 'std', 'rustls-tls-webpki-roots' ] }
ever_client = { git = 'https://github.com/everx-labs/ever-sdk.git', tag = '1.49.3', default-features = false, features = [ 'std', 'rustls-tls-webpki-roots' ] }

[profile.release]
lto = true
2 changes: 1 addition & 1 deletion packages/lib-react-native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eversdk/lib-react-native",
"version": "1.49.2",
"version": "1.49.3",
"description": "TON Client React Native Module",
"main": "index.js",
"repository": {
Expand Down
6 changes: 3 additions & 3 deletions packages/lib-web/lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = 'ever_sdk_wasm_module'
version = '1.49.1'
version = '1.49.3'
edition = '2018'
description = 'TON Client WASM binding'
license = 'Apache-2.0'
Expand All @@ -18,7 +18,7 @@ crate-type = [ 'staticlib', 'cdylib' ]

[dependencies]
js-sys = '0.3.57'
wasm-bindgen = '=0.2.84'
wasm-bindgen = '=0.2.99'
serde-wasm-bindgen = '0.4.3'
serde = { features = [ 'derive' ], version = '1.0' }
serde_json = '1.0.81'
Expand All @@ -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.49.2', default-features = false, features = [ 'wasm' ] }
ever_client = { git = 'https://github.com/everx-labs/ever-sdk.git', tag = '1.49.3', default-features = false, features = [ 'wasm' ] }

[dependencies.web-sys]
version = '0.3.57'
Expand Down
2 changes: 1 addition & 1 deletion packages/lib-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eversdk/lib-web",
"version": "1.49.2",
"version": "1.49.3",
"description": "TON Client WASM module for browsers",
"main": "index.js",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/tests-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eversdk/tests-node",
"version": "1.49.2",
"version": "1.49.3",
"private": true,
"description": "TON Client Tests runner on NodeJs",
"main": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/tests-react-native-jsi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eversdk/tests-react-native-jsi",
"version": "1.49.2",
"version": "1.49.3",
"private": true,
"main": "index.js",
"browser": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/tests-react-native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eversdk/tests-react-native",
"version": "1.49.2",
"version": "1.49.3",
"private": true,
"main": "index.js",
"browser": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/tests-web/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { TestsRunner } from "@eversdk/tests";
entry();
libWebSetup({
disableSeparateWorker: true
})
});
TonClient.useBinaryLibrary(libWeb);

window.addEventListener('load', () => {
Expand Down
Loading