Skip to content
This repository was archived by the owner on Apr 23, 2023. It is now read-only.

Commit 8b0614b

Browse files
author
Jack Tang
committed
add releaseit and docgen
1 parent 6dc935b commit 8b0614b

File tree

5 files changed

+1469
-4
lines changed

5 files changed

+1469
-4
lines changed

.release-it.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"github": {
3+
"release": true,
4+
"releaseName": "Release ${version}",
5+
"preRelease": false,
6+
"draft": false,
7+
"tokenRef": "GITHUB_TOKEN",
8+
"assets": "",
9+
"timeout": 0
10+
},
11+
"hooks": {
12+
"after:bump": [
13+
"nimble version ${version}",
14+
"nimble docgen"
15+
]
16+
}
17+
}

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Each thread is associated with one channel. Threads process its channel with asy
99

1010
Two communication patterns are provided:
1111
- `send` is uni-directional, sending data to channel of target thread.
12-
- `ask` is bi-directional, request-and-reply style with returning type `Future[JsoNode]`, use like remote procedure call.
12+
- `ask` is bi-directional, request-and-reply style with returning type `Future[JsonNode]`, use like remote procedure call.
1313

1414
Each thread has a fixed unique `name`. All threads can talk with each other by name. The order of creation of threads does not matter, as long as the target thread is created before calling `send` or `ask`.
1515

@@ -60,5 +60,8 @@ when isMainModule:
6060
main()
6161
```
6262

63+
## Manually Create Thread
64+
65+
6366

6467

0 commit comments

Comments
 (0)