| OLD | NEW |
| 1 ## 1.1.0 |
| 2 |
| 3 * Add a `caseSensitive` named parameter to `new Glob()` that controls whether |
| 4 the glob is case-sensitive. This defaults to `false` on Windows and `true` |
| 5 elsewhere. |
| 6 |
| 7 Matching case-insensitively on Windows is a behavioral change, but since it |
| 8 more closely matches the semantics of Windows paths it's considered a bug fix |
| 9 rather than a breaking change. |
| 10 |
| 1 ## 1.0.5 | 11 ## 1.0.5 |
| 2 | 12 |
| 3 * Narrow the dependency on `path`. Previously, this allowed versions that didn't | 13 * Narrow the dependency on `path`. Previously, this allowed versions that didn't |
| 4 support all the functionality this package needs. | 14 support all the functionality this package needs. |
| 5 | 15 |
| 6 * Upgrade to the new test runner. | 16 * Upgrade to the new test runner. |
| 7 | 17 |
| 8 ## 1.0.4 | 18 ## 1.0.4 |
| 9 | 19 |
| 10 * Added overlooked `collection` dependency. | 20 * Added overlooked `collection` dependency. |
| 11 | 21 |
| 12 ## 1.0.3 | 22 ## 1.0.3 |
| 13 | 23 |
| 14 * Fix a bug where `Glob.list()` and `Glob.listSync()` would incorrectly throw | 24 * Fix a bug where `Glob.list()` and `Glob.listSync()` would incorrectly throw |
| 15 exceptions when a directory didn't exist on the filesystem. | 25 exceptions when a directory didn't exist on the filesystem. |
| 16 | 26 |
| 17 ## 1.0.2 | 27 ## 1.0.2 |
| 18 | 28 |
| 19 * Fixed `Glob.list()` on Windows. | 29 * Fixed `Glob.list()` on Windows. |
| 20 | 30 |
| 21 ## 1.0.1 | 31 ## 1.0.1 |
| 22 | 32 |
| 23 * Fix several analyzer warnings. | 33 * Fix several analyzer warnings. |
| 24 | 34 |
| 25 * Fix the tests on Windows. | 35 * Fix the tests on Windows. |
| OLD | NEW |