Skip to content

Commit

Permalink
Ensure --port value is handled as a number not a string by client.l
Browse files Browse the repository at this point in the history
  • Loading branch information
aw committed Nov 30, 2020
1 parent e9ba4b3 commit 770ff51
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.18.2 (2020-11-30)

### Bug fixes

* Ensure --port value is handled as a number not a string by client.l

## 0.18.1 (2020-11-12)

### New features
Expand Down
2 changes: 1 addition & 1 deletion client.l
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
(--decrypt (on *KV_decrypt)) # decrypt all values using GPG
(--encrypt (on *KV_encrypt)) # encrypt all values using GPG
(--host (setq *KV_host (opt))) # default 'localhost'
(--port (setq *KV_port (opt))) # default '6378'
(--port (setq *KV_port (format (opt)))) # default '6378'
(--name (setq *KV_clientid (opt))) # default '<randomly generated>'
(--poll (setq *KV_poll (opt))) # enable polling of command
(--pass (setq *KV_pass (opt))) # required password
Expand Down
2 changes: 1 addition & 1 deletion module.l
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[de APP_INFO
("name" "picolisp-kv")
("version" "0.18.1")
("version" "0.18.2")
("summary" "Redis-inspired in-memory key/value store written in PicoLisp")
("source" "https://github.com/aw/picolisp-kv")
("author" "Alexander Williams")
Expand Down

0 comments on commit 770ff51

Please sign in to comment.