Skip to content

Commit 6fada01

Browse files
author
citycide
committed
chore(version): 0.8.0 [ci skip]
1 parent 74031bc commit 6fada01

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

changelog.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
<a name="v0.8.0"></a>
2+
### [`v0.8.0`](https://github.com/citycide/glob/compare/v0.7.0...v0.8.0) (2018-07-21)
3+
4+
5+
###### BREAKING CHANGES
6+
7+
* `listGlob` has been removed to encourage the use of iterators. `sequtils.toSeq`
8+
from Nim's stdlib can be used to convert the iterators to seqs
9+
* The walk iterators now take an options set rather than multiple boolean parameters
10+
* `GlobResult` has been renamed `GlobEntry`
11+
12+
###### FEATURES
13+
14+
* support case insensitive matching ([`fe17bdd`](https://github.com/citycide/glob/commit/fe17bddcd45f86771ba248a6756143dcd7a5a82d))
15+
* **windows:** match casing of expanded directories to filesystem ([`76e1582`](https://github.com/citycide/glob/commit/76e1582f4f1e36109147aa8882ccc97034f71e6e))
16+
* rename `GlobResult` to `GlobEntry` ([`34fa6f3`](https://github.com/citycide/glob/commit/34fa6f338ae1d41f55aa8a358bb4055cbbdcddd8))
17+
* forward `os.PathComponent` for ease of use ([`de74aff`](https://github.com/citycide/glob/commit/de74affcda0fcebc81da9db80363dacd2005477b))
18+
19+
###### BUG FIXES
20+
21+
* **walk:** expand magic if given a glob ([`8ef605b`](https://github.com/citycide/glob/commit/8ef605b0adac77440e3d8653e0543b489a9bfd00))
22+
* handle empty base paths when joining ([`0cdb00f`](https://github.com/citycide/glob/commit/0cdb00f268fc45df4c9ba73269a5cf54f4a250ee))
23+
* don't recurse into hidden directories when `includeHidden == false` (#14) ([`b6de2fd`](https://github.com/citycide/glob/commit/b6de2fd1a9eff022bc0006e565840f431cb99015))
24+
25+
###### PERFORMANCE
26+
27+
* **walk:** move some processing inside proceed check ([`cfabbea`](https://github.com/citycide/glob/commit/cfabbeaa9496d8e9a96f143f052377ea293f982a))
28+
29+
---
30+
131
<a name="v0.7.0"></a>
232
### [`v0.7.0`](https://github.com/citycide/glob/compare/v0.6.0...v0.7.0) (2018-07-04)
333

glob.nimble

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = "0.7.0"
1+
version = "0.8.0"
22
author = "Bo Lingen"
33
description = "Pure library for matching file paths against Unix style glob patterns."
44
license = "MIT"

0 commit comments

Comments
 (0)