Skip to content

Commit

Permalink
0.10.9
Browse files Browse the repository at this point in the history
  • Loading branch information
guzba committed May 1, 2023
1 parent 955d0b6 commit a109dcb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/zippy.nim
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion zippy.nimble
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit a109dcb

Please sign in to comment.