Skip to content

Commit 66ce1a7

Browse files
committed
Upgrade dependencies
1 parent 0cec413 commit 66ce1a7

File tree

15 files changed

+163
-147
lines changed

15 files changed

+163
-147
lines changed

Cargo.lock

Lines changed: 131 additions & 119 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ indexmap = { version = "2.4.0", features = ["rayon", "serde"] }
4141
itertools = "0.14.0"
4242
maplit = "1.0.2"
4343
rayon = "1.10.0"
44-
regex-macro = "0.2.0"
44+
regex-macro = "0.3.0"
4545
serde = { version = "1.0.209", features = ["derive"] }
4646
thiserror = "2.0.11"
4747
toml = { version = "0.8.19", features = ["preserve_order"] }

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -641,9 +641,9 @@ following.
641641

642642
```toml
643643
[templates]
644-
source = '''
644+
source = """
645645
{{ hooks?.pre | nl }}{% for file in files %}source "{{ file }}"
646-
{% endfor %}{{ hooks?.post | nl }}'''
646+
{% endfor %}{{ hooks?.post | nl }}"""
647647
PATH = 'export PATH="{{ dir }}:$PATH"'
648648
path = 'path=( "{{ dir }}" $path )'
649649
fpath = 'fpath=( "{{ dir }}" $fpath )'

completions/sheldon.bash

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
_sheldon() {
22
local i cur prev opts cmd
33
COMPREPLY=()
4-
cur="${COMP_WORDS[COMP_CWORD]}"
5-
prev="${COMP_WORDS[COMP_CWORD-1]}"
4+
if [[ "${BASH_VERSINFO[0]}" -ge 4 ]]; then
5+
cur="$2"
6+
else
7+
cur="${COMP_WORDS[COMP_CWORD]}"
8+
fi
9+
prev="$3"
610
cmd=""
711
opts=""
812

9-
for i in ${COMP_WORDS[@]}
13+
for i in "${COMP_WORDS[@]:0:COMP_CWORD}"
1014
do
1115
case "${cmd},${i}" in
1216
",$1")

docs/src/Configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,9 +248,9 @@ following.
248248

249249
```toml
250250
[templates]
251-
source = '''
251+
source = """
252252
{{ hooks?.pre | nl }}{% for file in files %}source "{{ file }}"
253-
{% endfor %}{{ hooks?.post | nl }}'''
253+
{% endfor %}{{ hooks?.post | nl }}"""
254254
PATH = 'export PATH="{{ dir }}:$PATH"'
255255
path = 'path=( "{{ dir }}" $path )'
256256
fpath = 'fpath=( "{{ dir }}" $fpath )'

tests/testdata/directories_default/plugins.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ apply = ["source"]
2424
PATH = 'export PATH="{{ dir }}:$PATH"'
2525
path = 'path=( "{{ dir }}" $path )'
2626
fpath = 'fpath=( "{{ dir }}" $fpath )'
27-
source = '''
27+
source = """
2828
{{ hooks?.pre | nl }}{% for file in files %}source "{{ file }}"
29-
{% endfor %}{{ hooks?.post | nl }}'''
29+
{% endfor %}{{ hooks?.post | nl }}"""

tests/testdata/directories_xdg_from_env/plugins.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ apply = ["source"]
2424
PATH = 'export PATH="{{ dir }}:$PATH"'
2525
path = 'path=( "{{ dir }}" $path )'
2626
fpath = 'fpath=( "{{ dir }}" $fpath )'
27-
source = '''
27+
source = """
2828
{{ hooks?.pre | nl }}{% for file in files %}source "{{ file }}"
29-
{% endfor %}{{ hooks?.post | nl }}'''
29+
{% endfor %}{{ hooks?.post | nl }}"""

tests/testdata/github_bad_reinstall/plugins.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ apply = ["source"]
1616
PATH = 'export PATH="{{ dir }}:$PATH"'
1717
path = 'path=( "{{ dir }}" $path )'
1818
fpath = 'fpath=( "{{ dir }}" $fpath )'
19-
source = '''
19+
source = """
2020
{{ hooks?.pre | nl }}{% for file in files %}source "{{ file }}"
21-
{% endfor %}{{ hooks?.post | nl }}'''
21+
{% endfor %}{{ hooks?.post | nl }}"""

tests/testdata/github_branch/plugins.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ apply = ["source"]
1616
PATH = 'export PATH="{{ dir }}:$PATH"'
1717
path = 'path=( "{{ dir }}" $path )'
1818
fpath = 'fpath=( "{{ dir }}" $fpath )'
19-
source = '''
19+
source = """
2020
{{ hooks?.pre | nl }}{% for file in files %}source "{{ file }}"
21-
{% endfor %}{{ hooks?.post | nl }}'''
21+
{% endfor %}{{ hooks?.post | nl }}"""

tests/testdata/github_https/plugins.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ apply = ["source"]
1616
PATH = 'export PATH="{{ dir }}:$PATH"'
1717
path = 'path=( "{{ dir }}" $path )'
1818
fpath = 'fpath=( "{{ dir }}" $fpath )'
19-
source = '''
19+
source = """
2020
{{ hooks?.pre | nl }}{% for file in files %}source "{{ file }}"
21-
{% endfor %}{{ hooks?.post | nl }}'''
21+
{% endfor %}{{ hooks?.post | nl }}"""

0 commit comments

Comments
 (0)