Skip to content

Commit d581e7c

Browse files
committed
chore(release): publish
1 parent 473cd90 commit d581e7c

File tree

12 files changed

+75
-14
lines changed

12 files changed

+75
-14
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.2.0](https://github.com/AllJointTW/TonJS/compare/v0.1.2...v0.2.0) (2020-05-13)
7+
8+
9+
* refactor!: make the all argument in same logger, print in the one line ([9215054](https://github.com/AllJointTW/TonJS/commit/92150545f1e10013b692fa2802f7bb4903398790))
10+
11+
12+
### BREAKING CHANGES
13+
14+
* rename the printWithColor to printIn, and make the all argument print in one line
15+
16+
17+
18+
19+
620
## [0.1.2](https://github.com/AllJointTW/TonJS/compare/v0.1.1...v0.1.2) (2020-05-07)
721

822
### Bug Fixes

lerna.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
{
2-
"version": "0.1.2",
2+
"version": "0.2.0",
33
"npmClient": "yarn",
44
"useWorkspaces": true,
55
"conventionalCommits": true,
66
"exact": true,
7-
"packages": ["packages/*"],
7+
"packages": [
8+
"packages/*"
9+
],
810
"command": {
911
"init": {
1012
"exact": true

packages/balance/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.2.0](https://github.com/AllJointTW/TonJS/compare/v0.1.2...v0.2.0) (2020-05-13)
7+
8+
**Note:** Version bump only for package @tonjs/balance
9+
10+
11+
12+
13+
614
## [0.1.1](https://github.com/AllJointTW/TonJS/compare/v0.1.0...v0.1.1) (2020-05-07)
715

816
**Note:** Version bump only for package @tonjs/balance

packages/balance/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tonjs/balance",
3-
"version": "0.1.1",
3+
"version": "0.2.0",
44
"keywords": [
55
"http",
66
"benchmark",
@@ -40,6 +40,6 @@
4040
"prepublishOnly": "yarn build"
4141
},
4242
"dependencies": {
43-
"@tonjs/ton": "0.1.1"
43+
"@tonjs/ton": "0.2.0"
4444
}
4545
}

packages/bin/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.2.0](https://github.com/AllJointTW/TonJS/compare/v0.1.2...v0.2.0) (2020-05-13)
7+
8+
**Note:** Version bump only for package @tonjs/bin
9+
10+
11+
12+
13+
614
## [0.1.2](https://github.com/AllJointTW/TonJS/compare/v0.1.1...v0.1.2) (2020-05-07)
715

816
### Bug Fixes

packages/bin/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tonjs/bin",
3-
"version": "0.1.2",
3+
"version": "0.2.0",
44
"keywords": [
55
"http",
66
"benchmark",
@@ -43,8 +43,8 @@
4343
"prepublishOnly": "yarn build"
4444
},
4545
"dependencies": {
46-
"@tonjs/logger": "0.1.1",
47-
"@tonjs/ton": "0.1.1",
46+
"@tonjs/logger": "0.2.0",
47+
"@tonjs/ton": "0.2.0",
4848
"yargs": "^15.3.1"
4949
},
5050
"devDependencies": {

packages/cors/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# [0.2.0](https://github.com/AllJointTW/TonJS/compare/v0.1.2...v0.2.0) (2020-05-13)
7+
8+
**Note:** Version bump only for package @tonjs/cors

packages/cors/package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tonjs/cors",
3-
"version": "0.1.2",
3+
"version": "0.2.0",
44
"keywords": [
55
"http",
66
"benchmark",
@@ -40,7 +40,6 @@
4040
"prepublishOnly": "yarn build"
4141
},
4242
"dependencies": {
43-
"@tonjs/ton": "0.1.1"
44-
},
45-
"devDependencies": {}
43+
"@tonjs/ton": "0.2.0"
44+
}
4645
}

packages/logger/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.2.0](https://github.com/AllJointTW/TonJS/compare/v0.1.2...v0.2.0) (2020-05-13)
7+
8+
9+
* refactor!: make the all argument in same logger, print in the one line ([9215054](https://github.com/AllJointTW/TonJS/commit/92150545f1e10013b692fa2802f7bb4903398790))
10+
11+
12+
### BREAKING CHANGES
13+
14+
* rename the printWithColor to printIn, and make the all argument print in one line
15+
16+
17+
18+
19+
620
## [0.1.1](https://github.com/AllJointTW/TonJS/compare/v0.1.0...v0.1.1) (2020-05-07)
721

822
**Note:** Version bump only for package @tonjs/logger

packages/logger/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tonjs/logger",
3-
"version": "0.1.1",
3+
"version": "0.2.0",
44
"keywords": [
55
"http",
66
"benchmark",

0 commit comments

Comments
 (0)