Skip to content
This repository was archived by the owner on Jun 19, 2021. It is now read-only.

Commit 58de61a

Browse files
committed
chore(release): v0.2.2 [skip ci]
1 parent f4d99f0 commit 58de61a

8 files changed

Lines changed: 58 additions & 24 deletions

File tree

.circleci/config.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@ tests: &tests
2727
- <<: *build
2828
- <<: *unit_tests
2929

30+
who_am_i: &who_am_i
31+
run:
32+
name: Tell the CI who I am
33+
command: |
34+
git config --global user.email $GIT_EMAIL
35+
git config --global user.name $GIT_USERNAME
36+
3037
jobs:
3138
#region PREPARATION
3239
dependency_cache:
@@ -116,10 +123,12 @@ jobs:
116123
command: npx commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)
117124
- run: npm run build && npx lerna exec --no-bail -- npm pack
118125
- run: npm run predocs && tar cvzf docs-$CIRCLE_TAG.tgz docs
126+
- <<: *who_am_i
119127
- run:
120128
name: Draft Github release
121-
# TODO: change to lerna (MAYBE)
122-
command: GH_RELEASE_GITHUB_API_TOKEN=$GH_TOKEN npx gh-release --draft --assets $(ls -m packages/*/*.tgz | tr -d ' ') --yes
129+
command: | # TODO: change to lerna (MAYBE)
130+
sudo su -c 'sudo npm i -g DrSensor/gh-release'
131+
GH_RELEASE_GITHUB_API_TOKEN=$GH_TOKEN gh-release --draft --assets $(ls -m packages/*/*.tgz | tr -d ' ') --yes
123132
publish:
124133
docker:
125134
- image: circleci/node:latest

CHANGELOG.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
# Change Log
22

3-
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
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.2](https://github.com/DrSensor/bot-byte/compare/v0.2.1...v0.2.2) (2019-02-05)
7+
8+
**Note:** Version bump only for package obot
9+
10+
411

5-
<a name="0.2.1"></a>
612
## [0.2.1](https://github.com/DrSensor/bot-byte/compare/v0.2.0...v0.2.1) (2019-01-18)
713

814

@@ -12,8 +18,7 @@ All notable changes to this project will be documented in this file. See [standa
1218

1319

1420

15-
<a name="0.2.0"></a>
16-
# [0.2.0](https://github.com/DrSensor/bot-byte/compare/v0.1.0...v0.2.0) (2019-01-09)
21+
## [0.2.0](https://github.com/DrSensor/bot-byte/compare/v0.1.0...v0.2.0) (2019-01-09)
1722

1823

1924
### Features
@@ -28,8 +33,7 @@ All notable changes to this project will be documented in this file. See [standa
2833

2934

3035

31-
<a name="0.1.0"></a>
32-
# 0.1.0 (2018-12-28)
36+
## 0.1.0 (2018-12-28)
3337

3438

3539
### Bug Fixes

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
"allowBranch": "master"
1313
}
1414
},
15-
"version": "0.2.1"
15+
"version": "0.2.2"
1616
}

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "obot",
33
"private": true,
4+
"repository": "github:DrSensor/bot-byte",
45
"devDependencies": {
56
"@babel/core": "^7.2.2",
67
"@babel/plugin-proposal-class-properties": "^7.3.0",

packages/cli/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.2](https://github.com/DrSensor/bot-byte/compare/v0.2.1...v0.2.2) (2019-02-05)
7+
8+
**Note:** Version bump only for package @obot/cli

packages/cli/package.json

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,32 @@
11
{
22
"name": "@obot/cli",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "A CLI to help you creating Byteball chatbot",
55
"main": "dist/index.js",
66
"types": "types/index.d.ts",
77
"files": [
8-
"/bin",
9-
"/dist",
10-
"/types",
11-
"/oclif.manifest.json"
8+
"/bin",
9+
"/dist",
10+
"/types",
11+
"/oclif.manifest.json"
1212
],
1313
"bin": {
14-
"obot": "./bin/run"
15-
},
16-
"oclif": {
17-
"commands": "./dist/commands",
18-
"bin": "obot",
19-
"plugins": [
20-
"@oclif/plugin-help"
21-
]
14+
"obot": "./bin/run"
15+
},
16+
"oclif": {
17+
"commands": "./dist/commands",
18+
"bin": "obot",
19+
"plugins": [
20+
"@oclif/plugin-help"
21+
]
2222
},
2323
"repository": "github:DrSensor/bot-byte",
2424
"homepage": "https://drsensor.github.io/bot-byte",
25-
"keywords": ["obyte", "chatbot", "cli"],
25+
"keywords": [
26+
"obyte",
27+
"chatbot",
28+
"cli"
29+
],
2630
"author": "Fahmi Akbar Wildana @DrSensor",
2731
"license": "MIT",
2832
"dependencies": {

packages/library/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.2](https://github.com/DrSensor/bot-byte/compare/v0.2.1...v0.2.2) (2019-02-05)
7+
8+
**Note:** Version bump only for package @obot/lib

packages/library/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@obot/lib",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "An abstraction layer for creating Byteball chatbot",
55
"main": "dist/cjs/index.js",
66
"module": "dist/es/index.mjs",

0 commit comments

Comments
 (0)