v0.0.21
What's Changed
Changed
- Python package renamed from
grovertovfs— imports change fromfrom grover import ...tofrom vfs import .... Matches thevfs-pyPyPI distribution name. This is a breaking change with no compatibility shim. - Class identifiers renamed to a
VFS*/VirtualFileSystemscheme:GroverFileSystem→VirtualFileSystem(invfs.base)Grover→VFSClient(sync facade)GroverAsync→VFSClientAsync(async router)GroverResult→VFSResultGroverObject/GroverObjectBase→VFSObject/VFSObjectBaseGroverError→VFSError
- DB table renamed
grover_objects→vfs_objects(and theix_grover_objects_ext_kindindex →ix_vfs_objects_ext_kind). No migration script is shipped — existing databases need their tables recreated by the consumer. scripts/bump_version.py— updated to point atsrc/vfs/__init__.py.README.md— examples, install commands, badges, and class names updated for the new package and identifiers.
Full Changelog: v0.0.20...v0.0.21