Skip to content

v0.6.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@haltcase haltcase released this 07 Jun 01:28
· 130 commits to master since this release

This release has the potential to greatly improve performance. glob will no longer traverse into directories or over files that have no hope of matching the given pattern. A simple example is that a shallow pattern like *.nim can only match files with a .nim extension in the current directory — so glob should never enter a subdirectory or consider files with any other extension. This is now the case!

TL;DR when using shallow patterns in roots of huge directory structures, users should see huge performance gains.

PERFORMANCE