diff --git a/CHANGELOG.md b/CHANGELOG.md index e7259954..899ff78a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ All notable changes to this project will be documented in this file. +## [1.34.1] – 2022-05-26 + +### New +- supported removing Copy interface from UInt256 +- supported changed interface of `ton_types::Cell` + ## [1.34.0] – 2022-05-18 ### New diff --git a/lerna.json b/lerna.json index 2bbc39c3..175dbd4e 100644 --- a/lerna.json +++ b/lerna.json @@ -3,7 +3,7 @@ "packages": [ "packages/*" ], - "version": "1.34.0", + "version": "1.34.1", "command": { "version": { "message": "Release" diff --git a/packages/core/package.json b/packages/core/package.json index 83e58134..d9d86b6c 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@eversdk/core", - "version": "1.34.0", + "version": "1.34.1", "description": "TON Client for Java Script", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/lib-node/lib/Cargo.toml b/packages/lib-node/lib/Cargo.toml index 965502de..7452804c 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' -ton_client = { git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.34.0' } +ton_client = { git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.34.1' } [profile.release] lto = true diff --git a/packages/lib-node/package.json b/packages/lib-node/package.json index 24538878..71f48071 100644 --- a/packages/lib-node/package.json +++ b/packages/lib-node/package.json @@ -1,6 +1,6 @@ { "name": "@eversdk/lib-node", - "version": "1.34.0", + "version": "1.34.1", "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 9c558e7e..4e615791 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.34.0", + "version": "1.34.1", "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 2da035d5..202c69d8 100644 --- a/packages/lib-react-native/android/lib/Cargo.toml +++ b/packages/lib-react-native/android/lib/Cargo.toml @@ -11,7 +11,7 @@ crate-type = [ 'cdylib' ] [dependencies] lazy_static = '1.4.0' jni = { default-features = false, version = '0.12.0' } -ton_client = { git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.34.0' } +ton_client = { git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.34.1' } openssl = { features = [ 'vendored' ], version = '0.10' } [profile.release] diff --git a/packages/lib-react-native/ios/lib/Cargo.toml b/packages/lib-react-native/ios/lib/Cargo.toml index 980ec2a0..a6f2202c 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' -ton_client = { git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.34.0' } +ton_client = { git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.34.1' } [profile.release] lto = true diff --git a/packages/lib-react-native/package.json b/packages/lib-react-native/package.json index 3cfcfb12..161aebca 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.34.0", + "version": "1.34.1", "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 27dde285..f3f29b12 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' } -ton_client = { default-features = false, features = [ 'wasm-base' ], git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.34.0' } +ton_client = { default-features = false, features = [ 'wasm-base' ], git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.34.1' } [dependencies.web-sys] version = '0.3.57' diff --git a/packages/lib-web/package.json b/packages/lib-web/package.json index c68771e2..539ee583 100644 --- a/packages/lib-web/package.json +++ b/packages/lib-web/package.json @@ -1,6 +1,6 @@ { "name": "@eversdk/lib-web", - "version": "1.34.0", + "version": "1.34.1", "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 1c98830d..c0df574f 100644 --- a/packages/tests-node/package.json +++ b/packages/tests-node/package.json @@ -1,6 +1,6 @@ { "name": "@eversdk/tests-node", - "version": "1.34.0", + "version": "1.34.1", "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 4f97d47a..5fff88a6 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.34.0", + "version": "1.34.1", "private": true, "main": "index.js", "browser": true, diff --git a/packages/tests-react-native/package.json b/packages/tests-react-native/package.json index 87f9801e..55e4c78a 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.34.0", + "version": "1.34.1", "private": true, "main": "index.js", "browser": true, diff --git a/packages/tests-web/package.json b/packages/tests-web/package.json index 5edf0799..1dbbec06 100644 --- a/packages/tests-web/package.json +++ b/packages/tests-web/package.json @@ -1,6 +1,6 @@ { "name": "@eversdk/tests-web", - "version": "1.34.0", + "version": "1.34.1", "private": true, "description": "TON Client WASM module tests runner", "scripts": { diff --git a/packages/tests/package.json b/packages/tests/package.json index db822dfd..5b8d6836 100644 --- a/packages/tests/package.json +++ b/packages/tests/package.json @@ -1,6 +1,6 @@ { "name": "@eversdk/tests", - "version": "1.34.0", + "version": "1.34.1", "private": true, "description": "TON Client Tests", "main": "dist/index.js",