folder-tidy 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -102,4 +102,4 @@ node index.js undo --help
102
102
 
103
103
  ## Version
104
104
 
105
- Current release: `1.0.0`
105
+ Current release: `1.0.1`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "folder-tidy",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A smarter CLI to organize messy folders by type, name, or date with undo support",
5
5
  "main": "index.js",
6
6
  "files": [
package/src/constants.js CHANGED
@@ -1,4 +1,4 @@
1
- const VERSION = '3.0.0';
1
+ const VERSION = '1.0.1';
2
2
  const APP_FOLDER = '.folder-tidy';
3
3
  const MANIFEST_PREFIX = 'manifest-';
4
4
  const INTERNAL_FILES = new Set(['index.js', 'package.json', 'README.md', 'LICENSE']);