Skip to content

Commit a309935

Browse files
authored
Merge pull request #81 from facelessuser/prep-5.0.1
Prep for 5.0.1 by bumping version and minor document fixes.
2 parents 46e0f9b + 332bd30 commit a309935

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/src/markdown/pathlib.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ def glob(self, patterns, *, flags=0):
245245
regular, inclusion pattern, it is considered a match. If a file matches *any* exclusion pattern (when enabling the
246246
[`NEGATE`](#pathlibnegate) flag), then it will not be returned.
247247

248-
This method calls our own [`iglob`](./glob.md#glob.glob) implementation, and as such, should behave in the same manner
248+
This method calls our own [`iglob`](./glob.md#globiglob) implementation, and as such, should behave in the same manner
249249
in respect to features, the one exception being that instead of returning path strings in the generator, it will return
250250
[`Path`](#pathlibpath) objects.
251251

wcmatch/__meta__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,5 +186,5 @@ def parse_version(ver, pre=False):
186186
return Version(major, minor, micro, release, pre, post, dev)
187187

188188

189-
__version_info__ = Version(5, 0, 1, ".dev")
189+
__version_info__ = Version(5, 0, 1, "final")
190190
__version__ = __version_info__._get_canonical()

0 commit comments

Comments
 (0)