diff --git a/Changelog.md b/Changelog.md index 850ffb7..1421926 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,8 +1,16 @@ +0.0.8 (October 2, 2017) +This release adds several new features: +- Experimental support for HDFS (thanks to @ValHayot) +- Ability to include or exclude certain directories from indexing (thanks to @adelavega) +- Refactored code to support more modular extensions to other file systems +- Ability to write indexes out to, and reconstruct from, static .json files +- Support for arbitrary entity mapping functions passed by name in the config file + 0.0.7 (August 11, 2017) Minor improvements and bug fixes: - - Adds option to use strict matching when calling get_nearest() - - Adds ability to exclude certain directories from indexing (thanks to @adelavega) - - Fix travis config +- Adds option to use strict matching when calling get_nearest() +- Adds ability to exclude certain directories from indexing (thanks to @adelavega) +- Fix travis config 0.0.6 (March 31, 2017) Minor improvements and bug fixes: diff --git a/README.md b/README.md index 42fda56..e528243 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Get grabby with file trees ## Overview -Grabbit is a lightweight Python 2 and 3 package for simple queries over filenames within a project. It's geared towards projects or applications with highly structured filenames that allow useful queries to be performed without having to inspect the file metadata or contents. +Grabbit is a lightweight Python 3 package for simple queries over filenames within a project. It's geared towards projects or applications with highly structured filenames that allow useful queries to be performed without having to inspect the file metadata or contents. ## Installation diff --git a/setup.py b/setup.py index 726eb7c..dbb9b95 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ tests_require = [] -VERSION = "0.0.7" +VERSION = "0.0.8" setup( name="grabbit",