Skip to content

Commit

Permalink
Merge pull request #142 from tonlabs/0.25.2-rc
Browse files Browse the repository at this point in the history
Version 0.25.2
  • Loading branch information
melsomino authored Jul 27, 2020
2 parents 318c9ab + c18af90 commit 90d8f3c
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Release Notes
All notable changes to this project will be documented in this file.

## 0.25.2 - July 26, 2020
### Fixed
- Error reporting in test suite on react-native testApp.

## 0.25.1 - July 26, 2020
### Bug fix
- TimeoutOverflowWarning: 2147488647 does not fit into a 32-bit signed integer was fixed
Expand Down
6 changes: 4 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ pipeline {
[
$class: 'StringParameterValue',
name: 'ton_client_node_js_branch',
value: "${GIT_BRANCH}" ==~ /\d+\.\d+\.\d+-rc/ ? "${GIT_BRANCH}" : "master"
value: "master"
// value: "${GIT_BRANCH}" ==~ /\d+\.\d+\.\d+-rc/ ? "${GIT_BRANCH}" : "master"
],
[
$class: 'BooleanParameterValue',
Expand All @@ -67,7 +68,8 @@ pipeline {
[
$class: 'StringParameterValue',
name: 'ton_client_web_js_branch',
value: "${GIT_BRANCH}" ==~ /\d+\.\d+\.\d+-rc/ ? "${GIT_BRANCH}" : "master"
value: "master"
// value: "${GIT_BRANCH}" ==~ /\d+\.\d+\.\d+-rc/ ? "${GIT_BRANCH}" : "master"
],
[
$class: 'BooleanParameterValue',
Expand Down
3 changes: 1 addition & 2 deletions __tests__/_/init-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,7 @@ async function init() {
const client: TONClient = await TONClient.create(tests.config);
tests.client = client;
console.log(
'[Init] Created client is connected to: ',
client.config.data && client.config.data.servers,
`[Init] Created client is connected to: ${JSON.stringify(client.config.data && client.config.data.servers)}`,
);
await readGiverKeys();
}
Expand Down
2 changes: 1 addition & 1 deletion dist/TONClient.js

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

2 changes: 1 addition & 1 deletion dist/modules/TONConfigModule.js

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

2 changes: 1 addition & 1 deletion dist/modules/TONContractsModule.js

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

2 changes: 1 addition & 1 deletion dist/modules/TONCryptoModule.js

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

4 changes: 2 additions & 2 deletions dist/modules/TONQueriesModule.js

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ton-client-js",
"version": "0.25.1",
"version": "0.25.2",
"description": "TON Client for Java Script",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 90d8f3c

Please sign in to comment.