usocket icon indicating copy to clipboard operation
usocket copied to clipboard

Version variable is not updated as of 0.8.6

Open phoe opened this issue 2 years ago • 2 comments

https://github.com/usocket/usocket/blob/154be13cc667219cbe0a83b971d9f05d8f0aaea6/usocket.lisp#L17-L18

phoe avatar Sep 27 '23 13:09 phoe

This version string is long obsoleted and the actual version is now stored in ASDF system definitions. So I'm going to use the following definition:

;; usocket version string, now stored in version.sexp file
(define-symbol-macro *version*
  #+asdf (asdf:system-version (asdf:find-system :usocket)) #-asdf "")

Let me know if there's any potential problems.

binghe avatar Sep 27 '23 23:09 binghe

Should be (asdf:component-version (asdf:find-system :usocket)) after testing on SBCL

binghe avatar Sep 28 '23 00:09 binghe