Skip to content

Commit 545fc7d

Browse files
chore(release): 0.19.10 [skip ci]
1 parent 2620d32 commit 545fc7d

File tree

3 files changed

+16
-9
lines changed

3 files changed

+16
-9
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ EXAMPLES
277277
$ bitsocial community create --title 'Hello Plebs' --description 'Welcome'
278278
```
279279

280-
_See code: [src/cli/commands/community/create.ts](https://github.com/bitsocialhq/bitsocial-cli/blob/v0.19.9/src/cli/commands/community/create.ts)_
280+
_See code: [src/cli/commands/community/create.ts](https://github.com/bitsocialhq/bitsocial-cli/blob/v0.19.10/src/cli/commands/community/create.ts)_
281281

282282
## `bitsocial community delete ADDRESSES`
283283

@@ -302,7 +302,7 @@ EXAMPLES
302302
$ bitsocial community delete Qmb99crTbSUfKXamXwZBe829Vf6w5w5TktPkb6WstC9RFW
303303
```
304304

305-
_See code: [src/cli/commands/community/delete.ts](https://github.com/bitsocialhq/bitsocial-cli/blob/v0.19.9/src/cli/commands/community/delete.ts)_
305+
_See code: [src/cli/commands/community/delete.ts](https://github.com/bitsocialhq/bitsocial-cli/blob/v0.19.10/src/cli/commands/community/delete.ts)_
306306

307307
## `bitsocial community edit ADDRESS`
308308

@@ -355,7 +355,7 @@ EXAMPLES
355355
$ bitsocial community edit plebbit.eth --settings.fetchThumbnailUrls=false
356356
```
357357

358-
_See code: [src/cli/commands/community/edit.ts](https://github.com/bitsocialhq/bitsocial-cli/blob/v0.19.9/src/cli/commands/community/edit.ts)_
358+
_See code: [src/cli/commands/community/edit.ts](https://github.com/bitsocialhq/bitsocial-cli/blob/v0.19.10/src/cli/commands/community/edit.ts)_
359359

360360
## `bitsocial community get ADDRESS`
361361

@@ -380,7 +380,7 @@ EXAMPLES
380380
$ bitsocial community get 12D3KooWG3XbzoVyAE6Y9vHZKF64Yuuu4TjdgQKedk14iYmTEPWu
381381
```
382382

383-
_See code: [src/cli/commands/community/get.ts](https://github.com/bitsocialhq/bitsocial-cli/blob/v0.19.9/src/cli/commands/community/get.ts)_
383+
_See code: [src/cli/commands/community/get.ts](https://github.com/bitsocialhq/bitsocial-cli/blob/v0.19.10/src/cli/commands/community/get.ts)_
384384

385385
## `bitsocial community list`
386386

@@ -403,7 +403,7 @@ EXAMPLES
403403
$ bitsocial community list
404404
```
405405

406-
_See code: [src/cli/commands/community/list.ts](https://github.com/bitsocialhq/bitsocial-cli/blob/v0.19.9/src/cli/commands/community/list.ts)_
406+
_See code: [src/cli/commands/community/list.ts](https://github.com/bitsocialhq/bitsocial-cli/blob/v0.19.10/src/cli/commands/community/list.ts)_
407407

408408
## `bitsocial community start ADDRESSES`
409409

@@ -428,7 +428,7 @@ EXAMPLES
428428
$ bitsocial community start 12D3KooWG3XbzoVyAE6Y9vHZKF64Yuuu4TjdgQKedk14iYmTEPWu
429429
```
430430

431-
_See code: [src/cli/commands/community/start.ts](https://github.com/bitsocialhq/bitsocial-cli/blob/v0.19.9/src/cli/commands/community/start.ts)_
431+
_See code: [src/cli/commands/community/start.ts](https://github.com/bitsocialhq/bitsocial-cli/blob/v0.19.10/src/cli/commands/community/start.ts)_
432432

433433
## `bitsocial community stop ADDRESSES`
434434

@@ -453,7 +453,7 @@ EXAMPLES
453453
$ bitsocial community stop Qmb99crTbSUfKXamXwZBe829Vf6w5w5TktPkb6WstC9RFW
454454
```
455455

456-
_See code: [src/cli/commands/community/stop.ts](https://github.com/bitsocialhq/bitsocial-cli/blob/v0.19.9/src/cli/commands/community/stop.ts)_
456+
_See code: [src/cli/commands/community/stop.ts](https://github.com/bitsocialhq/bitsocial-cli/blob/v0.19.10/src/cli/commands/community/stop.ts)_
457457

458458
## `bitsocial daemon`
459459

@@ -490,7 +490,7 @@ EXAMPLES
490490
$ bitsocial daemon --plebbitOptions.kuboRpcClientsOptions[0] https://remoteipfsnode.com
491491
```
492492

493-
_See code: [src/cli/commands/daemon.ts](https://github.com/bitsocialhq/bitsocial-cli/blob/v0.19.9/src/cli/commands/daemon.ts)_
493+
_See code: [src/cli/commands/daemon.ts](https://github.com/bitsocialhq/bitsocial-cli/blob/v0.19.10/src/cli/commands/daemon.ts)_
494494

495495
## `bitsocial help [COMMAND]`
496496

docs/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## <small>0.19.10 (2026-02-09)</small>
4+
5+
* feat: add container verification to Docker publish workflow ([6b38236](https://github.com/bitsocialhq/bitsocial-cli/commit/6b38236))
6+
* feat: add descriptions for web UI clients in daemon output ([2620d32](https://github.com/bitsocialhq/bitsocial-cli/commit/2620d32))
7+
* feat: always print web UI URLs with auth key ([bf34d30](https://github.com/bitsocialhq/bitsocial-cli/commit/bf34d30))
8+
* fix: add ca-certificates to Docker image for git SSL verification ([85415cf](https://github.com/bitsocialhq/bitsocial-cli/commit/85415cf))
9+
310
## <small>0.19.9 (2026-02-09)</small>
411

512
* feat: add Docker support ([a437478](https://github.com/bitsocialhq/bitsocial-cli/commit/a437478))

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bitsocial-cli",
3-
"version": "0.19.9",
3+
"version": "0.19.10",
44
"description": "Command line interface to BitSocial API",
55
"types": "./dist/index.d.ts",
66
"homepage": "https://github.com/bitsocialhq/bitsocial-cli",

0 commit comments

Comments
 (0)