Skip to content

Commit 5b01985

Browse files
committed
release:
1 parent ba865ec commit 5b01985

File tree

6 files changed

+84
-5
lines changed

6 files changed

+84
-5
lines changed

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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.1.0](https://github.com/njfamirm/mind-swap/compare/v1.2.1...v0.1.0) (2024-02-07)
7+
8+
### Features
9+
10+
* **api:** base chat ([19d9b57](https://github.com/njfamirm/mind-swap/commit/19d9b5773a35ff3fb9beb6c06b5119cab2327e58)) by @njfamirm
11+
* **api:** chat ([b9cb65e](https://github.com/njfamirm/mind-swap/commit/b9cb65ea7b92ef50a2e8a4087e5e8561da281869)) by @njfamirm
12+
* **bot:** on message ([4cdf20a](https://github.com/njfamirm/mind-swap/commit/4cdf20a593a06f428ca259dd8dbccbed8ac31050)) by @njfamirm
13+
* **deploy:** optimize for this project ([f2d3c5c](https://github.com/njfamirm/mind-swap/commit/f2d3c5c4560eb3c1a13892f2d43cb503b7e4ae3b)) by @njfamirm
14+
* **telegram-bot:** base package ([67f49d4](https://github.com/njfamirm/mind-swap/commit/67f49d4e763ddee3a2d7249107f429471879e058)) by @njfamirm
15+
16+
### Bug Fixes
17+
18+
* **api/check:** remove store token check ([3501102](https://github.com/njfamirm/mind-swap/commit/350110248864d17fdc2fab6f6f6a4dc7e655713b)) by @njfamirm
19+
* **app:** debug mode ([847c00d](https://github.com/njfamirm/mind-swap/commit/847c00d78bf9ec92d4d039fe530aefb098d14c2c)) by @njfamirm
20+
* **app:** esbuild preset ([2660f15](https://github.com/njfamirm/mind-swap/commit/2660f15b90e047fd24146562181ef7cde6b251fe)) by @njfamirm
21+
* **bot:** use fetchJson ([8cba1f3](https://github.com/njfamirm/mind-swap/commit/8cba1f3da8f87cc9398006ce8799a9363bd71807)) by @njfamirm
22+
23+
### Code Refactoring
24+
25+
* **api:** remove create and delete account ([cfdd1f7](https://github.com/njfamirm/mind-swap/commit/cfdd1f78080994c14c502fbf350a2669e0088265)) by @njfamirm
26+
* separate chat tool record ([32ff264](https://github.com/njfamirm/mind-swap/commit/32ff264dc0f89f7d9cff422b1ff7d52d2480e26e)) by @njfamirm
27+
28+
### Miscellaneous Chores
29+
30+
* add secret to env ([8913eb1](https://github.com/njfamirm/mind-swap/commit/8913eb1db4f9d5d8e1e16ddf2a2c7fb1d52aabb4)) by @njfamirm
31+
* **api/demo.http:** remove conversation id ([7c6d6d1](https://github.com/njfamirm/mind-swap/commit/7c6d6d13a0a1812597de0e43eefee2515aa367a6)) by @njfamirm
32+
* **bot:** rename project ([f687f4b](https://github.com/njfamirm/mind-swap/commit/f687f4b13eb8ef8bd52d776ee9d17fe1115a1db7)) by @njfamirm
33+
* **deploy:** encrypt env files ([ad02be2](https://github.com/njfamirm/mind-swap/commit/ad02be2b62a353c005216fa427a5c9b4c7bfa639)) by @njfamirm
34+
* remove app ([b49e5ba](https://github.com/njfamirm/mind-swap/commit/b49e5bab825a8243cef591a47fbd150b6a8ac679)) by @njfamirm
35+
* rename project ([765c8c0](https://github.com/njfamirm/mind-swap/commit/765c8c034516454d02327cc56accc06eca3bac00)) by @njfamirm
36+
* upd ([5b45c02](https://github.com/njfamirm/mind-swap/commit/5b45c0294c14c0c929b62bb592730b6341bf95d2)) by @njfamirm

lerna.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/lerna-lite/lerna-lite/main/packages/cli/schemas/lerna-schema.json",
3-
"version": "0.0.0",
3+
"version": "0.1.0",
44
"npmClient": "yarn",
5-
"packages": ["packages/*"],
5+
"packages": [
6+
"packages/*"
7+
],
68
"loglevel": "verbose",
79
"command": {
810
"version": {
@@ -77,7 +79,9 @@
7779
]
7880
},
7981
"changelogIncludeCommitsClientLogin": " by @%l",
80-
"ignoreChanges": ["*.md"],
82+
"ignoreChanges": [
83+
"*.md"
84+
],
8185
"skipBumpOnlyReleases": true,
8286
"message": "release:",
8387
"private": true,

packages/api/CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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.1.0](https://github.com/njfamirm/mind-swap/compare/v1.2.1...v0.1.0) (2024-02-07)
7+
8+
### Features
9+
10+
* **api:** base chat ([19d9b57](https://github.com/njfamirm/mind-swap/commit/19d9b5773a35ff3fb9beb6c06b5119cab2327e58)) by @njfamirm
11+
* **api:** chat ([b9cb65e](https://github.com/njfamirm/mind-swap/commit/b9cb65ea7b92ef50a2e8a4087e5e8561da281869)) by @njfamirm
12+
13+
### Bug Fixes
14+
15+
* **api/check:** remove store token check ([3501102](https://github.com/njfamirm/mind-swap/commit/350110248864d17fdc2fab6f6f6a4dc7e655713b)) by @njfamirm
16+
17+
### Code Refactoring
18+
19+
* **api:** remove create and delete account ([cfdd1f7](https://github.com/njfamirm/mind-swap/commit/cfdd1f78080994c14c502fbf350a2669e0088265)) by @njfamirm
20+
* separate chat tool record ([32ff264](https://github.com/njfamirm/mind-swap/commit/32ff264dc0f89f7d9cff422b1ff7d52d2480e26e)) by @njfamirm
21+
22+
### Miscellaneous Chores
23+
24+
* **api/demo.http:** remove conversation id ([7c6d6d1](https://github.com/njfamirm/mind-swap/commit/7c6d6d13a0a1812597de0e43eefee2515aa367a6)) by @njfamirm
25+
* rename project ([765c8c0](https://github.com/njfamirm/mind-swap/commit/765c8c034516454d02327cc56accc06eca3bac00)) by @njfamirm

packages/api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mind-swap-api",
3-
"version": "0.0.0",
3+
"version": "0.1.0",
44
"description": "Alwatr Progressive Multi Page (Web) Application.",
55
"author": "S. Amir Mohammad Najafi <njfamirm@gmail.com>",
66
"private": true,

packages/bot/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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.1.0](https://github.com/njfamirm/mind-swap/compare/v1.2.1...v0.1.0) (2024-02-07)
7+
8+
### Features
9+
10+
* **deploy:** optimize for this project ([f2d3c5c](https://github.com/njfamirm/mind-swap/commit/f2d3c5c4560eb3c1a13892f2d43cb503b7e4ae3b)) by @njfamirm
11+
12+
### Miscellaneous Chores
13+
14+
* **bot:** rename project ([f687f4b](https://github.com/njfamirm/mind-swap/commit/f687f4b13eb8ef8bd52d776ee9d17fe1115a1db7)) by @njfamirm

packages/bot/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mind-swap-bot",
3-
"version": "0.0.0",
3+
"version": "0.1.0",
44
"description": "Alwatr Progressive Multi Page (Web) Application.",
55
"author": "S. Amir Mohammad Najafi <njfamirm@gmail.com>",
66
"private": true,

0 commit comments

Comments
 (0)