From 0b542f54452e1ed73392a1684b1ac85b3f2103ed Mon Sep 17 00:00:00 2001 From: "Mahlon E. Smith" Date: Sun, 4 Apr 2021 16:12:19 -0700 Subject: [PATCH] Get library and packaging versioning in line. --- src/stomp.nim | 2 +- stomp.nimble | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stomp.nim b/src/stomp.nim index 14b3e22..ae3831c 100644 --- a/src/stomp.nim +++ b/src/stomp.nim @@ -58,7 +58,7 @@ import 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 --git a/stomp.nimble b/stomp.nimble index 105edd0..2b81c08 100644 --- a/stomp.nimble +++ b/stomp.nimble @@ -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"