diff --git a/docs/src/markdown/about/changelog.md b/docs/src/markdown/about/changelog.md index d8ec3bc2..ab74a0a8 100644 --- a/docs/src/markdown/about/changelog.md +++ b/docs/src/markdown/about/changelog.md @@ -2,7 +2,7 @@ ## 6.0.2 -- **FIX**: Fix login related to dot files and `GLOBSTAR`. Recursive directory search should return all dot files, which +- **FIX**: Fix logic related to dot files and `GLOBSTAR`. Recursive directory search should return all dot files, which should then be filtered by the patterns. They should not be excluded before being filtered by the pattern. ## 6.0.1 diff --git a/requirements/docs.txt b/requirements/docs.txt index a267c95e..b1531077 100644 --- a/requirements/docs.txt +++ b/requirements/docs.txt @@ -1,4 +1,4 @@ -mkdocs_pymdownx_material_extras==1.0 +mkdocs_pymdownx_material_extras==1.0.1 mkdocs-git-revision-date-localized-plugin mkdocs-minify-plugin pyspelling diff --git a/wcmatch/__meta__.py b/wcmatch/__meta__.py index 3a111ae7..ec0df367 100644 --- a/wcmatch/__meta__.py +++ b/wcmatch/__meta__.py @@ -186,5 +186,5 @@ def parse_version(ver, pre=False): return Version(major, minor, micro, release, pre, post, dev) -__version_info__ = Version(6, 0, 2, ".dev") +__version_info__ = Version(6, 0, 2, "final") __version__ = __version_info__._get_canonical()