Skip to content

Commit

Permalink
Merge pull request #80 from guzba/ryan
Browse files Browse the repository at this point in the history
0.10.14
  • Loading branch information
guzba authored Jul 3, 2024
2 parents 7ec77e2 + 427a9f6 commit da11c67
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
nim-version: ${{ matrix.nim-version }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
- run: nimble test -d:release -y
- run: nimble test -d:release -d:lto -y
# - run: nimble test -d:release -d:lto -y
- run: nimble test --gc:orc -d:release -y
if: ${{ matrix.gc_orc }}
- run: nim cpp -d:release -r tests/all.nim
2 changes: 1 addition & 1 deletion src/zippy/ziparchives.nim
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ type

ZipArchiveReader* = ref object
memFile: MemFile
records: Table[string, ZipArchiveRecord]
records: OrderedTable[string, ZipArchiveRecord]

iterator walkFiles*(reader: ZipArchiveReader): string =
## Walks over all files in the archive and returns the file name
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.13"
version = "0.10.14"
author = "Ryan Oldenburg"
description = "Pure Nim implementation of deflate, zlib, gzip and zip."
license = "MIT"
Expand Down

0 comments on commit da11c67

Please sign in to comment.