Skip to content

Commit

Permalink
Merge pull request #216 from tonlabs/1.14.2-rc
Browse files Browse the repository at this point in the history
Fixed Typo in lib-react-native install script
  • Loading branch information
d3p authored Apr 30, 2021
2 parents 903ea2c + 99e6acc commit dbd57a5
Show file tree
Hide file tree
Showing 11 changed files with 31 additions and 12 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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

## [1.14.2] – 2021-04-30

### Fixed

- Typo in lib-react-native install script

## [1.14.1] – 2021-04-28

### Fixed
Expand Down
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.14.1",
"version": "1.14.2",
"command": {
"version": {
"message": "Release",
Expand Down
5 changes: 4 additions & 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.14.1",
"version": "1.14.2",
"description": "TON Client for Java Script",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -11,6 +11,9 @@
"scripts": {
"prepublishOnly": "npm i && tsc"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"TON",
"Client",
Expand Down
5 changes: 4 additions & 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.14.1",
"version": "1.14.2",
"description": "TON Client NodeJs AddOn",
"repository": {
"type": "git",
Expand All @@ -9,6 +9,9 @@
"scripts": {
"postinstall": "node install.js"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"TON",
"Client",
Expand Down
1 change: 1 addition & 0 deletions packages/lib-react-native/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ const os = require('os');
const binariesSource = process.env.TON_CLIENT_BIN_SRC || 'https://binaries.tonlabs.io';
const binariesVersion = process.env.TON_CLIENT_BIN_VERSION || require('./package.json')
.version
.split('.')
.slice(0, 2)
.join('_');
const binariesHomePath = path.resolve(os.homedir(), '.tonlabs', 'binaries', binariesVersion);
Expand Down
5 changes: 4 additions & 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.14.1",
"version": "1.14.2",
"description": "TON Client React Native Module",
"main": "index.js",
"repository": {
Expand All @@ -10,6 +10,9 @@
"scripts": {
"postinstall": "node install.js"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"TON",
"Client",
Expand Down
11 changes: 7 additions & 4 deletions packages/lib-web/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
{
"name": "@tonclient/lib-web",
"version": "1.14.1",
"version": "1.14.2",
"description": "TON Client WASM module for browsers",
"main": "index.js",
"scripts": {
"postinstall": "node install.js"
},
"repository": {
"type": "git",
"url": "https://github.com/tonlabs/ton-client-js.git"
},
"scripts": {
"postinstall": "node install.js"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"TON",
"Client",
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": "@tonclient/tests-node",
"version": "1.14.1",
"version": "1.14.2",
"private": true,
"description": "TON Client Tests runner on NodeJs",
"main": "index.js",
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": "@tonclient/tests-react-native",
"version": "1.14.1",
"version": "1.14.2",
"private": true,
"main": "index.js",
"browser": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/tests-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tonclient/tests-web",
"version": "1.14.1",
"version": "1.14.2",
"private": true,
"description": "TON Client WASM module tests runner",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/tests/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tonclient/tests",
"version": "1.14.1",
"version": "1.14.2",
"private": true,
"description": "TON Client Tests",
"main": "dist/index.js",
Expand Down

0 comments on commit dbd57a5

Please sign in to comment.