Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update rust crate regex to v1.10.5 #2278

Merged
merged 2 commits into from
Jun 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions docs/cli/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -1026,7 +1026,7 @@ In .mise.toml, tasks take this form:
outputs = ["dist/**/*.js"]

Alternatively, tasks can be defined as standalone scripts.
These must be located in the `.mise/tasks` directory.
These must be located in the `.mise/tasks`, `mise/tasks` or `.config/mise/tasks` directory.
The name of the script will be the name of the tasks.

$ cat .mise/tasks/build<<EOF
Expand Down Expand Up @@ -1110,8 +1110,9 @@ Examples:
```text
Updates mise itself

Uses the GitHub Releases API to find the latest release and binary
By default, this will also update any installed plugins
Uses the GitHub Releases API to find the latest release and binary.
By default, this will also update any installed plugins.
Uses the `GITHUB_API_TOKEN` environment variable if set for higher rate limits.

Usage: self-update [OPTIONS] [VERSION]

Expand Down Expand Up @@ -1456,7 +1457,7 @@ In .mise.toml, tasks take this form:
outputs = ["dist/**/*.js"]

Alternatively, tasks can be defined as standalone scripts.
These must be located in the `.mise/tasks` directory.
These must be located in the `.mise/tasks`, `mise/tasks` or `.config/mise/tasks` directory.
The name of the script will be the name of the tasks.

$ cat .mise/tasks/build<<EOF
Expand Down
9 changes: 5 additions & 4 deletions mise.usage.kdl
Original file line number Diff line number Diff line change
Expand Up @@ -780,7 +780,7 @@ In .mise.toml, tasks take this form:
outputs = ["dist/**/*.js"]

Alternatively, tasks can be defined as standalone scripts.
These must be located in the `.mise/tasks` directory.
These must be located in the `.mise/tasks`, `mise/tasks` or `.config/mise/tasks` directory.
The name of the script will be the name of the tasks.

$ cat .mise/tasks/build<<EOF
Expand Down Expand Up @@ -828,8 +828,9 @@ The name of the script will be the name of the tasks.
cmd "self-update" help="Updates mise itself" {
long_help r"Updates mise itself

Uses the GitHub Releases API to find the latest release and binary
By default, this will also update any installed plugins"
Uses the GitHub Releases API to find the latest release and binary.
By default, this will also update any installed plugins.
Uses the `GITHUB_API_TOKEN` environment variable if set for higher rate limits."
flag "-f --force" help="Update even if already up to date"
flag "--no-plugins" help="Disable auto-updating plugins"
flag "-y --yes" help="Skip confirmation prompt"
Expand Down Expand Up @@ -1053,7 +1054,7 @@ In .mise.toml, tasks take this form:
outputs = ["dist/**/*.js"]

Alternatively, tasks can be defined as standalone scripts.
These must be located in the `.mise/tasks` directory.
These must be located in the `.mise/tasks`, `mise/tasks` or `.config/mise/tasks` directory.
The name of the script will be the name of the tasks.

$ cat .mise/tasks/build<<EOF
Expand Down
Loading