Skip to content

Commit da11c67

Browse files
authored
Merge pull request #80 from guzba/ryan
0.10.14
2 parents 7ec77e2 + 427a9f6 commit da11c67

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
nim-version: ${{ matrix.nim-version }}
2323
repo-token: ${{ secrets.GITHUB_TOKEN }}
2424
- run: nimble test -d:release -y
25-
- run: nimble test -d:release -d:lto -y
25+
# - run: nimble test -d:release -d:lto -y
2626
- run: nimble test --gc:orc -d:release -y
2727
if: ${{ matrix.gc_orc }}
2828
- run: nim cpp -d:release -r tests/all.nim

src/zippy/ziparchives.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ type
2727

2828
ZipArchiveReader* = ref object
2929
memFile: MemFile
30-
records: Table[string, ZipArchiveRecord]
30+
records: OrderedTable[string, ZipArchiveRecord]
3131

3232
iterator walkFiles*(reader: ZipArchiveReader): string =
3333
## Walks over all files in the archive and returns the file name

zippy.nimble

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = "0.10.13"
1+
version = "0.10.14"
22
author = "Ryan Oldenburg"
33
description = "Pure Nim implementation of deflate, zlib, gzip and zip."
44
license = "MIT"

0 commit comments

Comments
 (0)