Skip to content

Commit

Permalink
3.0.1
Browse files Browse the repository at this point in the history
Fixes node version.
  • Loading branch information
jonschlinkert committed Oct 29, 2023
1 parent bc719c4 commit 5214db4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [8.6, 10, 12, 14, 16]
node: [10, 12, 14, 16]
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
Expand Down
4 changes: 2 additions & 2 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "picomatch",
"description": "Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.",
"version": "3.0.0",
"version": "3.0.1",
"homepage": "https://github.com/micromatch/picomatch",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"funding": "https://github.com/sponsors/jonschlinkert",
Expand All @@ -17,7 +17,7 @@
],
"main": "index.js",
"engines": {
"node": ">=8.6"
"node": ">=10"
},
"scripts": {
"lint": "eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .",
Expand Down

2 comments on commit 5214db4

@SimenB
Copy link

@SimenB SimenB commented on 5214db4 Oct 29, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @jonschlinkert, congrats on the release! 😃

Would you mind updating https://github.com/micromatch/picomatch/blob/master/CHANGELOG.md? I looked through the commits, and first saw we'd need to check for windows ourselves, but the docs updates seems to suggest that was backed out of the default export? I assume a changelog update/upgrade guide would bring clarity 🙂

@jonschlinkert
Copy link
Member Author

@jonschlinkert jonschlinkert commented on 5214db4 Oct 29, 2023 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.