haltcase / glob

Pure Nim library for matching file paths against Unix style glob patterns.
https://glob.bolingen.me
MIT License
61 stars 5 forks source link

refactor: allow nim 2.0 #59

Closed metagn closed 1 year ago

metagn commented 1 year ago

This was originally added to require Nim be above version 1.0. However there is also a < 2.0.0 constraint, which breaks nim CI if the nim's version is updated to 2.0 (see https://github.com/nim-lang/Nim/pull/20968), despite this package working for the development version of 2.0 for a while.

haltcase commented 1 year ago

Thanks @metagn!