Skip to content

Commit

Permalink
chore(version): 0.8.0 [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
citycide committed Jul 21, 2018
1 parent 74031bc commit 6fada01
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
30 changes: 30 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
<a name="v0.8.0"></a>
### [`v0.8.0`](https://github.com/citycide/glob/compare/v0.7.0...v0.8.0) (2018-07-21)


###### BREAKING CHANGES

* `listGlob` has been removed to encourage the use of iterators. `sequtils.toSeq`
from Nim's stdlib can be used to convert the iterators to seqs
* The walk iterators now take an options set rather than multiple boolean parameters
* `GlobResult` has been renamed `GlobEntry`

###### FEATURES

* support case insensitive matching ([`fe17bdd`](https://github.com/citycide/glob/commit/fe17bddcd45f86771ba248a6756143dcd7a5a82d))
* **windows:** match casing of expanded directories to filesystem ([`76e1582`](https://github.com/citycide/glob/commit/76e1582f4f1e36109147aa8882ccc97034f71e6e))
* rename `GlobResult` to `GlobEntry` ([`34fa6f3`](https://github.com/citycide/glob/commit/34fa6f338ae1d41f55aa8a358bb4055cbbdcddd8))
* forward `os.PathComponent` for ease of use ([`de74aff`](https://github.com/citycide/glob/commit/de74affcda0fcebc81da9db80363dacd2005477b))

###### BUG FIXES

* **walk:** expand magic if given a glob ([`8ef605b`](https://github.com/citycide/glob/commit/8ef605b0adac77440e3d8653e0543b489a9bfd00))
* handle empty base paths when joining ([`0cdb00f`](https://github.com/citycide/glob/commit/0cdb00f268fc45df4c9ba73269a5cf54f4a250ee))
* don't recurse into hidden directories when `includeHidden == false` (#14) ([`b6de2fd`](https://github.com/citycide/glob/commit/b6de2fd1a9eff022bc0006e565840f431cb99015))

###### PERFORMANCE

* **walk:** move some processing inside proceed check ([`cfabbea`](https://github.com/citycide/glob/commit/cfabbeaa9496d8e9a96f143f052377ea293f982a))

---

<a name="v0.7.0"></a>
### [`v0.7.0`](https://github.com/citycide/glob/compare/v0.6.0...v0.7.0) (2018-07-04)

Expand Down
2 changes: 1 addition & 1 deletion glob.nimble
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "0.7.0"
version = "0.8.0"
author = "Bo Lingen"
description = "Pure library for matching file paths against Unix style glob patterns."
license = "MIT"
Expand Down

2 comments on commit 6fada01

@timotheecour
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

just curious, what do you mean by "chore" in chore(version) ?

@haltcase
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's the commit convention I use in all my projects: conventional commits which was spec'd based on the Angular guidelines.

And by the way another project of mine, fugitive has a changelog command for generating/updating a changelog using commits of this convention

Please sign in to comment.