Skip to content

Commit

Permalink
Merge pull request #79 from guzba/ryan
Browse files Browse the repository at this point in the history
0.10.13
  • Loading branch information
guzba authored Jul 3, 2024
2 parents a35acbd + ed0e461 commit 7ec77e2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
nim-version: ['1.0.x', '1.2.x', '1.4.x', '1.6.x', 'stable']
nim-version: ['1.2.x', '1.4.x', '1.6.x', 'stable']
include:
- nim-version: '1.4.x'
gc_orc: true
Expand Down
Binary file added tests/data/ziparchives/Bagnon-10.2.31.zip
Binary file not shown.
Binary file removed tests/data/ziparchives/Nim-1.6.6.zip
Binary file not shown.
6 changes: 3 additions & 3 deletions tests/test_ziparchives_read.nim
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ let
removeDir(goldDir)
removeDir(zippyDir)

extractAll("tests/data/ziparchives/Nim-1.6.6.zip", zippyDir)
extractAll("tests/data/ziparchives/Bagnon-10.2.31.zip", zippyDir)

when not defined(macosx):
createDir(goldDir)
when defined(windows):
let cmd = "tar -xf tests/data/ziparchives/Nim-1.6.6.zip -C " & goldDir
let cmd = "tar -xf tests/data/ziparchives/Bagnon-10.2.31.zip -C " & goldDir
else:
let cmd = "unzip tests/data/ziparchives/Nim-1.6.6.zip -d " & goldDir
let cmd = "unzip tests/data/ziparchives/Bagnon-10.2.31.zip -d " & goldDir
doAssert execShellCmd(cmd) == 0

for path in walkDirRec(
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.12"
version = "0.10.13"
author = "Ryan Oldenburg"
description = "Pure Nim implementation of deflate, zlib, gzip and zip."
license = "MIT"
Expand Down

0 comments on commit 7ec77e2

Please sign in to comment.