# HG changeset patch # User Mahlon E. Smith # Date 1617577939 25200 # Node ID ad53c6500712ff60eda34430483ec5f006cffd2f # Parent 363f275588ea79fd0e9ad12a527cb6b2f45a8325 Get library and packaging versioning in line. diff -r 363f275588ea -r ad53c6500712 src/stomp.nim --- a/src/stomp.nim Sun Apr 04 15:56:16 2021 -0700 +++ b/src/stomp.nim Sun Apr 04 16:12:19 2021 -0700 @@ -58,7 +58,7 @@ uri const - VERSION = "0.1.2" ## The current program version. + VERSION = "0.1.3" ## The current program version. NULL = "\x00" ## The NULL character. CR = "\r" ## The carriage return character. CRLF = "\r\n" ## Carriage return + Line feed (EOL). diff -r 363f275588ea -r ad53c6500712 stomp.nimble --- a/stomp.nimble Sun Apr 04 15:56:16 2021 -0700 +++ b/stomp.nimble Sun Apr 04 16:12:19 2021 -0700 @@ -1,7 +1,7 @@ # Package -version = "0.1.2" +version = "0.1.3" author = "Mahlon E. Smith " description = "A pure-nim implementation of the STOMP protocol for machine messaging." license = "MIT"