From a109dcb09796ee45fff0c74579c50291027c9a74 Mon Sep 17 00:00:00 2001 From: Ryan Oldenburg Date: Sun, 30 Apr 2023 23:05:15 -0500 Subject: [PATCH] 0.10.9 --- src/zippy.nim | 2 +- zippy.nimble | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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"