Skip to content

Commit

Permalink
Merge pull request #351 from tonlabs/1.28.1-rc
Browse files Browse the repository at this point in the history
Version 1.28.1
  • Loading branch information
d3p authored Feb 2, 2022
2 parents 0a19dac + 6097dea commit fa54342
Show file tree
Hide file tree
Showing 36 changed files with 13,655 additions and 9,696 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file.

## [1.28.1] – 2022-02-01

### Fixed
- Support breaking changes in `ton-labs-block-json` v0.7.1
- Updated endpoints for `main.ton.dev` alias.
- Migrate from jcenter() to mavenCentral()

## [1.28.0] – 2021-12-24

### New
Expand Down
22 changes: 11 additions & 11 deletions build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "ton_client_build"
version = "1.2.0"
description = "TON Client Build Library"
license = "Apache-2.0"
edition = "2018"
name = 'ton_client_build'
version = '1.2.0'
description = 'TON Client Build Library'
license = 'Apache-2.0'
edition = '2018'

[lib]
name = "ton_client_build"
name = 'ton_client_build'

[dependencies]
regex = "1.3.9"
dirs = "3.0.1"
flate2 = "1.0.19"
serde = "1.0.117"
serde_json = "1.0.59"
regex = '1.3.9'
dirs = '3.0.1'
flate2 = '1.0.19'
serde = '1.0.117'
serde_json = '1.0.59'
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.28.0",
"version": "1.28.1",
"command": {
"version": {
"message": "Release"
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": "@tonclient/core",
"version": "1.28.0",
"version": "1.28.1",
"description": "TON Client for Java Script",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
12 changes: 6 additions & 6 deletions packages/lib-node/build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "ton_client_node_build"
version = "1.2.0"
description = "TON Client Build Tool"
license = "Apache-2.0"
edition = "2018"
name = 'ton_client_node_build'
version = '1.2.0'
description = 'TON Client Build Tool'
license = 'Apache-2.0'
edition = '2018'

[dependencies]
ton_client_build = { path = "../../../build" }
ton_client_build = { path = '../../../build' }
16 changes: 8 additions & 8 deletions packages/lib-node/lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "ton_client_node_addon"
version = "1.2.0"
authors = ["TON Labs"]
license = "Apache-2.0"
name = 'ton_client_node_addon'
version = '1.2.0'
authors = [ 'TON Labs' ]
license = 'Apache-2.0'

[lib]
name = "tonclient"
crate-type = ["staticlib"]
name = 'tonclient'
crate-type = [ 'staticlib' ]

[dependencies]
libc = "0.2"
ton_client = { git = "https://github.com/tonlabs/TON-SDK.git", tag = "1.27.1" }
libc = '0.2'
ton_client = { git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.28.1' }

[profile.release]
lto = true
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": "@tonclient/lib-node",
"version": "1.28.0",
"version": "1.28.1",
"description": "TON Client NodeJs AddOn",
"repository": {
"type": "git",
Expand Down
10 changes: 5 additions & 5 deletions packages/lib-react-native-jsi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ android {
```diff
# Version of flipper SDK to use with React Native
-FLIPPER_VERSION=0.75.1
+FLIPPER_VERSION=0.78.0
+FLIPPER_VERSION=0.93.0
```

`android/app/src/main/java/.../MainApplication.java`
Expand Down Expand Up @@ -400,7 +400,7 @@ Please remember to set appropriate version of React Native in `lib-react-native-
cd lib-react-native-jsi
yarn add react-native@0.63.4
yarn add react-native@0.64.0
yarn add react-native@0.65.0-rc.3
yarn add react-native@0.65.1
```

# Testing
Expand Down Expand Up @@ -429,9 +429,9 @@ Then, install the dependencies from `*.tgz` archives:

```sh
cd ../tests-react-native-jsi
npm add file:../core/tonclient-core-1.21.4.tgz
npm add file:../tests/tonclient-tests-1.21.4.tgz
npm add file:../lib-react-native-jsi/tonclient-lib-react-native-jsi-1.21.4.tgz
npm add file:../core/tonclient-core-1.28.1.tgz
npm add file:../tests/tonclient-tests-1.28.1.tgz
npm add file:../lib-react-native-jsi/tonclient-lib-react-native-jsi-1.28.1.tgz
npm i
cd ios
pod install
Expand Down
9 changes: 5 additions & 4 deletions packages/lib-react-native-jsi/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ def CMAKE_TOOLCHAIN_FILE = "-DCMAKE_TOOLCHAIN_FILE=${getNdkBuildFullPath()}/../b
buildscript {
repositories {
google()
jcenter()
maven { url 'https://maven.google.com' }
mavenCentral()
}

dependencies {
Expand All @@ -83,7 +84,7 @@ android {
compileSdkVersion getExtOrIntegerDefault('compileSdkVersion')
buildToolsVersion getExtOrDefault('buildToolsVersion')
defaultConfig {
minSdkVersion 16
minSdkVersion 21
targetSdkVersion getExtOrIntegerDefault('targetSdkVersion')
versionCode 1
versionName "1.0"
Expand Down Expand Up @@ -344,9 +345,9 @@ tasks.whenTaskAdded { task ->
}

repositories {
mavenCentral()
jcenter()
google()
maven { url 'https://maven.google.com' }
mavenCentral()

def found = false
def defaultDir = null
Expand Down
9 changes: 5 additions & 4 deletions packages/lib-react-native-jsi/example63/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
buildscript {
ext {
buildToolsVersion = "29.0.2"
minSdkVersion = 16
minSdkVersion = 21
compileSdkVersion = 29
targetSdkVersion = 29
}
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:4.1.0")
classpath("com.android.tools.build:gradle:4.1.3")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand All @@ -31,7 +31,8 @@ allprojects {
}

google()
jcenter()
maven { url 'https://maven.google.com' }
maven { url 'https://www.jitpack.io' }
mavenCentral()
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ android.useAndroidX=true
android.enableJetifier=true

# Version of flipper SDK to use with React Native
FLIPPER_VERSION=0.78.0
FLIPPER_VERSION=0.93.0
7 changes: 4 additions & 3 deletions packages/lib-react-native-jsi/example64/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ buildscript {
}
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:4.1.0")
classpath("com.android.tools.build:gradle:4.1.3")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand All @@ -32,7 +32,8 @@ allprojects {
}

google()
jcenter()
maven { url 'https://maven.google.com' }
maven { url 'https://www.jitpack.io' }
mavenCentral()
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ android.useAndroidX=true
android.enableJetifier=true

# Version of flipper SDK to use with React Native
FLIPPER_VERSION=0.78.0
FLIPPER_VERSION=0.93.0
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": "@tonclient/lib-react-native-jsi",
"version": "1.28.0",
"version": "1.28.1",
"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/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

buildscript {
repositories {
jcenter()
mavenCentral()
}

dependencies {
Expand All @@ -16,7 +16,7 @@ android {
buildToolsVersion "27.0.3"

defaultConfig {
minSdkVersion 16
minSdkVersion 21
targetSdkVersion 27
versionCode 1
versionName "1.0"
Expand Down
12 changes: 6 additions & 6 deletions packages/lib-react-native/android/build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "ton_client_rn_android_build"
version = "1.2.0"
description = "TON Client Build Tool"
license = "Apache-2.0"
edition = "2018"
name = 'ton_client_rn_android_build'
version = '1.2.0'
description = 'TON Client Build Tool'
license = 'Apache-2.0'
edition = '2018'

[dependencies]
ton_client_build = { path = "../../../../build" }
ton_client_build = { path = '../../../../build' }
20 changes: 10 additions & 10 deletions packages/lib-react-native/android/lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[package]
name = "ton_client_react_native_android"
version = "1.2.0"
authors = ["TON Labs"]
license = "Apache-2.0"
name = 'ton_client_react_native_android'
version = '1.2.0'
authors = [ 'TON Labs' ]
license = 'Apache-2.0'

[lib]
name = "tonclient"
crate-type = ["cdylib"]
name = 'tonclient'
crate-type = [ 'cdylib' ]

[dependencies]
lazy_static = "1.4.0"
jni = { version = "0.12.0", default-features = false }
ton_client = { git = "https://github.com/tonlabs/TON-SDK.git", tag = "1.27.1" }
openssl = { version = "0.10", features = ["vendored"] }
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.28.1' }
openssl = { features = [ 'vendored' ], version = '0.10' }

[profile.release]
lto = true
12 changes: 6 additions & 6 deletions packages/lib-react-native/ios/build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "ton_client_rn_ios_build"
version = "1.2.0"
description = "TON Client Build Tool"
license = "Apache-2.0"
edition = "2018"
name = 'ton_client_rn_ios_build'
version = '1.2.0'
description = 'TON Client Build Tool'
license = 'Apache-2.0'
edition = '2018'

[dependencies]
ton_client_build = { path = "../../../../build" }
ton_client_build = { path = '../../../../build' }
16 changes: 8 additions & 8 deletions packages/lib-react-native/ios/lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "ton_client_react_native_ios"
version = "1.2.0"
authors = ["TON Labs"]
license = "Apache-2.0"
name = 'ton_client_react_native_ios'
version = '1.2.0'
authors = [ 'TON Labs' ]
license = 'Apache-2.0'

[lib]
name = "tonclient"
crate-type = ["staticlib"]
name = 'tonclient'
crate-type = [ 'staticlib' ]

[dependencies]
libc = "0.2"
ton_client = { git = "https://github.com/tonlabs/TON-SDK.git", tag = "1.27.1" }
libc = '0.2'
ton_client = { git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.28.1' }

[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": "@tonclient/lib-react-native",
"version": "1.28.0",
"version": "1.28.1",
"description": "TON Client React Native Module",
"main": "index.js",
"repository": {
Expand Down
22 changes: 11 additions & 11 deletions packages/lib-web/build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "ton_client_wasm_build"
version = "1.2.0"
description = "TON Client Build Tool"
license = "Apache-2.0"
edition = "2018"
name = 'ton_client_wasm_build'
version = '1.2.0'
description = 'TON Client Build Tool'
license = 'Apache-2.0'
edition = '2018'

[dependencies]
regex = "1.3.9"
dirs = "3.0.1"
flate2 = "1.0.19"
serde = "1.0.117"
serde_json = "1.0.59"
ton_client_build = { path = "../../../build" }
regex = '1.3.9'
dirs = '3.0.1'
flate2 = '1.0.19'
serde = '1.0.117'
serde_json = '1.0.59'
ton_client_build = { path = '../../../build' }
Loading

0 comments on commit fa54342

Please sign in to comment.