From ac8c26f42283c4d7de6cd1a18fe90c9709766224 Mon Sep 17 00:00:00 2001 From: "Mahlon E. Smith" Date: Wed, 15 May 2019 14:54:55 -0700 Subject: [PATCH] Version bump. --- src/stomp.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stomp.nim b/src/stomp.nim index b5d7dbc..26c8667 100644 --- a/src/stomp.nim +++ b/src/stomp.nim @@ -1,6 +1,6 @@ # vim: set et nosta sw=4 ts=4 ft=nim : # -# Copyright (c) 2016-2018, Mahlon E. Smith +# Copyright (c) 2016-2019, Mahlon E. Smith # All rights reserved. # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: @@ -58,7 +58,7 @@ import uri const - VERSION = "0.1.1" ## The current program version. + VERSION = "0.1.2" ## The current program version. NULL = "\x00" ## The NULL character. CR = "\r" ## The carriage return character. CRLF = "\r\n" ## Carriage return + Line feed (EOL).