Skip to content

Commit

Permalink
Bump version to 10 as symlik change may be surprising
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser committed Sep 24, 2024
1 parent 127a324 commit 7dee3bf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions docs/src/markdown/about/changelog.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Changelog

## 9.1
## 10.0

- **FIX**: Symlinks should not be traversed when `GLOBSTAR` is enabled unless `FOLLOW` is also enabled, but they
should still be matched. Prior to this fix, symlinks were not traversed _and_ they were ignored from matching which
contradicts how Bash works.
- **NEW**: Symlinks should not be traversed when `GLOBSTAR` is enabled unless `FOLLOW` is also enabled, but they
should still be matched. Prior to this change, symlinks were not traversed _and_ they were ignored from matching
which contradicts how Bash works, which is are general target.
- **FIX**: Fix some inconsistencies with `globmatch` and symlink handling when `REALPATH` is enabled.

## 9.0
Expand Down
2 changes: 1 addition & 1 deletion wcmatch/__meta__.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,5 +193,5 @@ def parse_version(ver: str) -> Version:
return Version(major, minor, micro, release, pre, post, dev)


__version_info__ = Version(9, 0, 1, "final")
__version_info__ = Version(10, 0, 0, "final")
__version__ = __version_info__._get_canonical()

0 comments on commit 7dee3bf

Please sign in to comment.