diff --git a/src/zippy.nim b/src/zippy.nim index c146ee8..f9c2f56 100644 --- a/src/zippy.nim +++ b/src/zippy.nim @@ -18,7 +18,7 @@ proc compress*( result[0] = 31.char result[1] = 139.char result[2] = 8.char - result[3] = (1.uint8 shl 3).char + result[3] = (1.uint8 shl 3).char # Set the fname flag block: # https://github.com/guzba/zippy/issues/61 let now = getTime() diff --git a/zippy.nimble b/zippy.nimble index 989c897..dcbae0a 100644 --- a/zippy.nimble +++ b/zippy.nimble @@ -1,4 +1,4 @@ -version = "0.10.8" +version = "0.10.9" author = "Ryan Oldenburg" description = "Pure Nim implementation of deflate, zlib, gzip and zip." license = "MIT"