Skip to content

Commit

Permalink
bump version 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergei Voronezhskii committed Dec 4, 2020
1 parent a5a1c17 commit 7e90fc6
Show file tree
Hide file tree
Showing 11 changed files with 46 additions and 42 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Release Notes
All notable changes to this project will be documented in this file.

## 1.2.1 - Dec 4, 2020

### Fix
- Publish npm packages without tests

## 1.2.0 - Dec 3, 2020

### New
Expand Down
1 change: 1 addition & 0 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"tagVersionPrefix": "",
"packages": [
"packages/*"
],
Expand Down
9 changes: 4 additions & 5 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "@tonclient/core",
"version": "1.2.0",
"version": "1.2.1",
"description": "TON Client for Java Script",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/tonlabs/ton-client-js.git"
},
"scripts": {
"prepublishOnly": "npm i && tsc"
},
"scripts": {
"prepublishOnly": "npm i && tsc"
},
"keywords": [
"TON",
"Client",
Expand All @@ -30,7 +30,6 @@
"engines": {
"node": ">=6"
},
"dependencies": {},
"devDependencies": {
"typescript": "^4.0.3"
}
Expand Down
4 changes: 2 additions & 2 deletions 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.2.0",
"version": "1.2.1",
"description": "TON Client NodeJs AddOn",
"repository": {
"type": "git",
Expand Down Expand Up @@ -29,7 +29,7 @@
"node": ">=6"
},
"dependencies": {
"@tonclient/core": "^1.2.0"
"@tonclient/core": "^1.2.1"
},
"devDependencies": {
"@types/node": "14.11.8"
Expand Down
9 changes: 4 additions & 5 deletions packages/lib-react-native/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "@tonclient/lib-react-native",
"version": "1.2.0",
"version": "1.2.1",
"description": "TON Client React Native Module",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/tonlabs/ton-client-js.git"
},
"scripts": {
"scripts": {
"postinstall": "node install.js"
},
},
"keywords": [
"TON",
"Client",
Expand All @@ -31,6 +31,5 @@
},
"peerDependencies": {
"react-native": "^0.63.3"
},
"dependencies": {}
}
}
4 changes: 1 addition & 3 deletions packages/lib-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tonclient/lib-web",
"version": "1.2.0",
"version": "1.2.1",
"description": "TON Client WASM module for browsers",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -28,7 +28,5 @@
"homepage": "https://docs.ton.dev/",
"engines": {
"node": ">=6"
},
"dependencies": {
}
}
13 changes: 7 additions & 6 deletions packages/tests-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@tonclient/node-tests-runner",
"version": "1.2.0",
"name": "@tonclient/tests-node",
"version": "1.2.1",
"private": true,
"description": "TON Client Tests runner on NodeJs",
"main": "index.js",
"repository": {
Expand All @@ -21,11 +22,11 @@
},
"dependencies": {
"@tonclient/core": "file:../core",
"@tonclient/tests": "file:../tests",
"@tonclient/lib-node": "file:../lib-node"
"@tonclient/lib-node": "file:../lib-node",
"@tonclient/tests": "file:../tests"
},
"devDependencies": {
"typescript": "4.0.3",
"@types/node": "14.11.8"
"@types/node": "14.11.8",
"typescript": "4.0.3"
}
}
2 changes: 1 addition & 1 deletion packages/tests-react-native/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# react-native-tests-runner
# tests-react-native

TON Labs Client Library for React Native Test App

Expand Down
14 changes: 7 additions & 7 deletions packages/tests-react-native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tonclient/react-native-tests-runner",
"version": "1.2.0",
"name": "@tonclient/tests-react-native",
"version": "1.2.1",
"private": true,
"main": "index.js",
"browser": true,
Expand All @@ -15,13 +15,13 @@
},
"dependencies": {
"@tonclient/core": "file:../core",
"@tonclient/tests": "file:../tests",
"@tonclient/lib-react-native": "file:../lib-react-native",
"react": "16.13.1",
"react-native": "0.63.3",
"buffer": "^6.0.2",
"@tonclient/tests": "file:../tests",
"assert": "^2.0.0",
"find-process": "^1.4.4"
"buffer": "^6.0.2",
"find-process": "^1.4.4",
"react": "16.13.1",
"react-native": "0.63.3"
},
"devDependencies": {
"@babel/core": "^7.12.3",
Expand Down
13 changes: 7 additions & 6 deletions packages/tests-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@tonclient/wasm-tests-runner",
"version": "1.2.0",
"name": "@tonclient/tests-web",
"version": "1.2.1",
"private": true,
"description": "TON Client WASM module tests runner",
"scripts": {
"npm install": "npm install",
Expand All @@ -23,19 +24,19 @@
"homepage": "https://docs.ton.dev/",
"dependencies": {
"@tonclient/core": "file:../core",
"@tonclient/tests": "file:../tests",
"@tonclient/lib-web": "file:../lib-web",
"@tonclient/tests": "file:../tests",
"assert": "^2.0.0",
"buffer": "^6.0.2",
"opentracing": "^0.14.4"
},
"devDependencies": {
"copy-webpack-plugin": "^6.2.1",
"find-process": "^1.4.4",
"puppeteer": "^5.3.1",
"webpack": "5.1.3",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0",
"copy-webpack-plugin": "^6.2.1",
"find-process": "^1.4.4"
"webpack-dev-server": "3.11.0"
},
"main": "index.js"
}
14 changes: 7 additions & 7 deletions packages/tests/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@tonclient/tests",
"version": "1.2.0",
"version": "1.2.1",
"private": true,
"description": "TON Client Tests",
"main": "dist/index.js",
"repository": {
Expand All @@ -27,15 +28,14 @@
"node": ">=6"
},
"dependencies": {
"big-integer": "^1.6.48",
"jest-circus": "22.1.4",
"expect": "^26.6.2",
"jest-mock": "^24.8.0",
"@babel/core": "^7.8.4",
"@babel/runtime": "^7.8.4",
"@tonclient/core": "file:../core"
"@tonclient/core": "file:../core",
"big-integer": "^1.6.48",
"expect": "^26.6.2",
"jest-circus": "22.1.4",
"jest-mock": "^24.8.0"
},
"peerDependencies": {},
"devDependencies": {
"@types/node": "^14.14.9"
}
Expand Down

0 comments on commit 7e90fc6

Please sign in to comment.