Skip to content

Commit 770ff51

Browse files
committed
Ensure --port value is handled as a number not a string by client.l
1 parent e9ba4b3 commit 770ff51

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

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

3+
## 0.18.2 (2020-11-30)
4+
5+
### Bug fixes
6+
7+
* Ensure --port value is handled as a number not a string by client.l
8+
39
## 0.18.1 (2020-11-12)
410

511
### New features

client.l

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
(--decrypt (on *KV_decrypt)) # decrypt all values using GPG
7878
(--encrypt (on *KV_encrypt)) # encrypt all values using GPG
7979
(--host (setq *KV_host (opt))) # default 'localhost'
80-
(--port (setq *KV_port (opt))) # default '6378'
80+
(--port (setq *KV_port (format (opt)))) # default '6378'
8181
(--name (setq *KV_clientid (opt))) # default '<randomly generated>'
8282
(--poll (setq *KV_poll (opt))) # enable polling of command
8383
(--pass (setq *KV_pass (opt))) # required password

module.l

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[de APP_INFO
22
("name" "picolisp-kv")
3-
("version" "0.18.1")
3+
("version" "0.18.2")
44
("summary" "Redis-inspired in-memory key/value store written in PicoLisp")
55
("source" "https://github.com/aw/picolisp-kv")
66
("author" "Alexander Williams")

0 commit comments

Comments
 (0)