Skip to content

Commit ac66c8c

Browse files
committed
release
1 parent d7f8c66 commit ac66c8c

File tree

101 files changed

+134
-130
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+134
-130
lines changed

.buildnumber

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
274
1+
275

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## CHANGELOG
22

3+
### v0.37.20 (2024-10-03)
4+
5+
* Maintenance: upgrade dependencies
6+
37
### v0.37.19 (2024-10-03)
48

59
* Maintenance: upgrade duckscript

Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-make"
3-
version = "0.37.19"
3+
version = "0.37.20"
44
authors = ["Sagie Gur-Ari <[email protected]>"]
55
description = "Rust task runner and build tool."
66
license = "Apache-2.0"
@@ -67,7 +67,7 @@ md5 = "^0.7"
6767
once_cell = "^1.20.1"
6868
petgraph = "^0.6.5"
6969
regex = "^1.11"
70-
run_script = "^0.10"
70+
run_script = "^0.11"
7171
rust_info = "^0.3.3"
7272
semver = "^1"
7373
serde = "^1"

README.md

+26-26
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ cargo make my-flow
242242
The output would look something like this:
243243

244244
```console
245-
[cargo-make] INFO - cargo make 0.37.19
245+
[cargo-make] INFO - cargo make 0.37.20
246246
[cargo-make] INFO - Build File: Makefile.toml
247247
[cargo-make] INFO - Task: my-flow
248248
[cargo-make] INFO - Setting Up Env.
@@ -665,7 +665,7 @@ Invoking cargo-make with additional arguments would result in the following:
665665
```console
666666
> cargo make varargs arg1 arg2 arg3
667667

668-
[cargo-make] INFO - cargo make 0.37.19
668+
[cargo-make] INFO - cargo make 0.37.20
669669
[cargo-make] INFO - Build File: Makefile.toml
670670
[cargo-make] INFO - Task: varargs
671671
[cargo-make] INFO - Setting Up Env.
@@ -682,7 +682,7 @@ Invoking cargo-make without any additional arguments would result in the followi
682682
```console
683683
> cargo make varargs
684684

685-
[cargo-make] INFO - cargo make 0.37.19
685+
[cargo-make] INFO - cargo make 0.37.20
686686
[cargo-make] INFO - Build File: Makefile.toml
687687
[cargo-make] INFO - Task: varargs
688688
[cargo-make] INFO - Setting Up Env.
@@ -709,7 +709,7 @@ Would output:
709709
```console
710710
> cargo make varargs arg1 arg2 arg3
711711

712-
[cargo-make] INFO - cargo make 0.37.19
712+
[cargo-make] INFO - cargo make 0.37.20
713713
[cargo-make] INFO - Build File: Makefile.toml
714714
[cargo-make] INFO - Task: varargs
715715
[cargo-make] INFO - Setting Up Env.
@@ -760,7 +760,7 @@ Invoking cargo-make with additional arguments would result in the following:
760760
```console
761761
> cargo make cli-args arg1 arg2 arg3
762762

763-
[cargo-make] INFO - cargo make 0.37.19
763+
[cargo-make] INFO - cargo make 0.37.20
764764
[cargo-make] INFO - Build File: Makefile.toml
765765
[cargo-make] INFO - Task: cli-args
766766
[cargo-make] INFO - Setting Up Env.
@@ -777,7 +777,7 @@ Invoking cargo-make without any additional arguments would result in the followi
777777
```console
778778
> cargo make cli-args
779779

780-
[cargo-make] INFO - cargo make 0.37.19
780+
[cargo-make] INFO - cargo make 0.37.20
781781
[cargo-make] INFO - Build File: Makefile.toml
782782
[cargo-make] INFO - Task: cli-args
783783
[cargo-make] INFO - Setting Up Env.
@@ -1039,7 +1039,7 @@ Output:
10391039

10401040
```console
10411041
> cargo make --cwd ./examples --makefile ./shebang.toml shebang-sh
1042-
[cargo-make] INFO - cargo make 0.37.19
1042+
[cargo-make] INFO - cargo make 0.37.20
10431043
[cargo-make] INFO - Build File: ./shebang.toml
10441044
[cargo-make] INFO - Task: shebang-sh
10451045
[cargo-make] INFO - Profile: development
@@ -1066,7 +1066,7 @@ Output:
10661066

10671067
```console
10681068
> cargo make --cwd ./examples --makefile ./shebang.toml shebang-python
1069-
[cargo-make] INFO - cargo make 0.37.19
1069+
[cargo-make] INFO - cargo make 0.37.20
10701070
[cargo-make] INFO - Build File: ./shebang.toml
10711071
[cargo-make] INFO - Task: shebang-python
10721072
[cargo-make] INFO - Profile: development
@@ -1391,7 +1391,7 @@ args = ["3"]
13911391
We run task **3** the output would be:
13921392

13931393
```console
1394-
[cargo-make] INFO - cargo make 0.37.19
1394+
[cargo-make] INFO - cargo make 0.37.20
13951395
[cargo-make] INFO - Build File: task_extend.toml
13961396
[cargo-make] INFO - Task: 3
13971397
[cargo-make] INFO - Profile: development
@@ -2630,7 +2630,7 @@ cargo make --cwd ./examples --makefile profile.toml --profile production echo
26302630
Output:
26312631

26322632
```console
2633-
[cargo-make] INFO - cargo make 0.37.19
2633+
[cargo-make] INFO - cargo make 0.37.20
26342634
[cargo-make] INFO - Build File: profile.toml
26352635
[cargo-make] INFO - Task: echo
26362636
[cargo-make] INFO - Profile: production
@@ -2750,7 +2750,7 @@ deprecated = true
27502750
When invoking **legacy** task for example, the output is:
27512751

27522752
```console
2753-
[cargo-make] INFO - cargo make 0.37.19
2753+
[cargo-make] INFO - cargo make 0.37.20
27542754
[cargo-make] INFO - Build File: deprecated.toml
27552755
[cargo-make] INFO - Task: legacy
27562756
[cargo-make] INFO - Profile: development
@@ -2791,15 +2791,15 @@ watch = true
27912791
Below is a sample output of invoking the task:
27922792

27932793
```console
2794-
[cargo-make] INFO - cargo make 0.37.19
2794+
[cargo-make] INFO - cargo make 0.37.20
27952795
[cargo-make] INFO - Build File: ./examples/watch.toml
27962796
[cargo-make] INFO - Task: watch-example
27972797
[cargo-make] INFO - Setting Up Env.
27982798
[cargo-make] INFO - Running Task: init
27992799
[cargo-make] INFO - Running Task: watch-example
28002800
[cargo-make] INFO - Running Task: watch-example-watch
28012801
[cargo-make] INFO - Execute Command: "cargo" "watch" "-q" "-x" "make --disable-check-for-updates --no-on-error --loglevel=info --makefile=/projects/rust/cargo-make/examples/watch.toml watch-example"
2802-
[cargo-make] INFO - cargo make 0.37.19
2802+
[cargo-make] INFO - cargo make 0.37.20
28032803
[cargo-make] INFO - Build File: /projects/rust/cargo-make/examples/watch.toml
28042804
[cargo-make] INFO - Task: watch-example
28052805
[cargo-make] INFO - Setting Up Env.
@@ -2883,7 +2883,7 @@ args = ["${MULTIPLE_VALUES}"]
28832883

28842884
```console
28852885
> cargo make --cwd ./examples --makefile functions.toml split
2886-
[cargo-make] INFO - cargo make 0.37.19
2886+
[cargo-make] INFO - cargo make 0.37.20
28872887
[cargo-make] INFO - Build File: functions.toml
28882888
[cargo-make] INFO - Task: split
28892889
[cargo-make] INFO - Profile: development
@@ -2895,7 +2895,7 @@ args = ["${MULTIPLE_VALUES}"]
28952895
[cargo-make] INFO - Build Done in 0 seconds.
28962896

28972897
> cargo make --cwd ./examples --makefile functions.toml no-split
2898-
[cargo-make] INFO - cargo make 0.37.19
2898+
[cargo-make] INFO - cargo make 0.37.20
28992899
[cargo-make] INFO - Build File: functions.toml
29002900
[cargo-make] INFO - Task: no-split
29012901
[cargo-make] INFO - Profile: development
@@ -2933,7 +2933,7 @@ args = ["@@getat(MULTIPLE_VALUES,|,3)"]
29332933

29342934
```console
29352935
> cargo make --cwd ./examples --makefile functions.toml getat
2936-
[cargo-make] INFO - cargo make 0.37.19
2936+
[cargo-make] INFO - cargo make 0.37.20
29372937
[cargo-make] INFO - Build File: functions.toml
29382938
[cargo-make] INFO - Task: getat
29392939
[cargo-make] INFO - Profile: development
@@ -2960,7 +2960,7 @@ args = ["1", "@@remove-empty(DOES_NOT_EXIST)", "2"]
29602960

29612961
```console
29622962
> cargo make --cwd ./examples --makefile functions.toml remove-empty
2963-
[cargo-make] INFO - cargo make 0.37.19
2963+
[cargo-make] INFO - cargo make 0.37.20
29642964
[cargo-make] INFO - Build File: functions.toml
29652965
[cargo-make] INFO - Task: remove-empty
29662966
[cargo-make] INFO - Profile: development
@@ -2993,7 +2993,7 @@ args = ["@@trim(TRIM_VALUE)"]
29932993

29942994
```console
29952995
> cargo make --cwd ./examples --makefile functions.toml remove-empty
2996-
[cargo-make] INFO - cargo make 0.37.19
2996+
[cargo-make] INFO - cargo make 0.37.20
29972997
[cargo-make] INFO - Build File: functions.toml
29982998
[cargo-make] INFO - Task: trim
29992999
[cargo-make] INFO - Profile: development
@@ -3022,7 +3022,7 @@ args = ["@@trim(TRIM_VALUE,end)"]
30223022

30233023
```console
30243024
> cargo make --cwd ./examples --makefile functions.toml trim-start
3025-
[cargo-make] INFO - cargo make 0.37.19
3025+
[cargo-make] INFO - cargo make 0.37.20
30263026
[cargo-make] INFO - Build File: functions.toml
30273027
[cargo-make] INFO - Task: trim-start
30283028
[cargo-make] INFO - Profile: development
@@ -3034,7 +3034,7 @@ args = ["@@trim(TRIM_VALUE,end)"]
30343034
[cargo-make] INFO - Build Done in 0 seconds.
30353035

30363036
> cargo make --cwd ./examples --makefile functions.toml trim-end
3037-
[cargo-make] INFO - cargo make 0.37.19
3037+
[cargo-make] INFO - cargo make 0.37.20
30383038
[cargo-make] INFO - Build File: functions.toml
30393039
[cargo-make] INFO - Task: trim-end
30403040
[cargo-make] INFO - Profile: development
@@ -3072,7 +3072,7 @@ Sample run for a mapping that was found:
30723072

30733073
```console
30743074
cargo make --cwd ./examples --makefile functions.toml -e DECODE_ENV_VAR=development decode
3075-
[cargo-make] INFO - cargo make 0.37.19
3075+
[cargo-make] INFO - cargo make 0.37.20
30763076
[cargo-make] INFO - Build File: functions.toml
30773077
[cargo-make] INFO - Task: decode
30783078
[cargo-make] INFO - Profile: development
@@ -3088,7 +3088,7 @@ Another sample run for a mapping that was not found:
30883088

30893089
```console
30903090
cargo make --cwd ./examples --makefile functions.toml -e DECODE_ENV_VAR=unmapped decode
3091-
[cargo-make] INFO - cargo make 0.37.19
3091+
[cargo-make] INFO - cargo make 0.37.20
30923092
[cargo-make] INFO - Build File: functions.toml
30933093
[cargo-make] INFO - Task: decode
30943094
[cargo-make] INFO - Profile: development
@@ -3113,7 +3113,7 @@ Sample run:
31133113

31143114
```console
31153115
cargo make --cwd ./examples --makefile functions.toml -e DECODE_ENV_VAR=unmapped decode-with-default
3116-
[cargo-make] INFO - cargo make 0.37.19
3116+
[cargo-make] INFO - cargo make 0.37.20
31173117
[cargo-make] INFO - Build File: functions.toml
31183118
[cargo-make] INFO - Task: decode-with-default
31193119
[cargo-make] INFO - Profile: development
@@ -3137,7 +3137,7 @@ Sample run:
31373137

31383138
```console
31393139
cargo make --cwd ./examples --makefile functions.toml -e DECODE_ENV_VAR=test decode-with-eval
3140-
[cargo-make] INFO - cargo make 0.37.19
3140+
[cargo-make] INFO - cargo make 0.37.20
31413141
[cargo-make] INFO - Build File: functions.toml
31423142
[cargo-make] INFO - Task: decode-with-eval
31433143
[cargo-make] INFO - Profile: development
@@ -3511,7 +3511,7 @@ In order to specify the minimal version, use the **min_version** in the config s
35113511

35123512
```toml
35133513
[config]
3514-
min_version = "0.37.19"
3514+
min_version = "0.37.20"
35153515
```
35163516

35173517
<a name="usage-performance-tuning"></a>
@@ -3641,7 +3641,7 @@ Example Usage:
36413641

36423642
```console
36433643
cargo make --diff-steps --makefile ./examples/override_core.toml post-build
3644-
[cargo-make] INFO - cargo make 0.37.19
3644+
[cargo-make] INFO - cargo make 0.37.20
36453645
[cargo-make] INFO - Build File: ./examples/override_core.toml
36463646
[cargo-make] INFO - Task: post-build
36473647
[cargo-make] INFO - Setting Up Env.

docs/_config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ theme: jekyll-theme-cayman
22
title: cargo-make
33
description: Rust task runner and build tool.
44
show_downloads: false
5-
version: 0.37.19
5+
version: 0.37.20

docs/api/cargo_make/all.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="List of all items in this crate"><title>List of all items in this crate</title><script>if(window.location.protocol!=="file:")document.head.insertAdjacentHTML("beforeend","SourceSerif4-Regular-0000000007da4a04.ttf.woff2,FiraSans-Regular-0000000084b1ad12.woff2,FiraSans-Medium-0000000066e2bc86.woff2,SourceCodePro-Regular-0000000004ddb02d.ttf.woff2,SourceCodePro-Semibold-00000000f27a569e.ttf.woff2".split(",").map(f=>`<link rel="preload" as="font" type="font/woff2" crossorigin href="../static.files/${f}">`).join(""))</script><link rel="stylesheet" href="../static.files/normalize-0000000091fda82d.css"><link rel="stylesheet" href="../static.files/rustdoc-0000000094d0019d.css"><meta name="rustdoc-vars" data-root-path="../" data-static-root-path="../static.files/" data-current-crate="cargo_make" data-themes="" data-resource-suffix="" data-rustdoc-version="1.80.0-nightly (ada5e2c7b 2024-05-31)" data-channel="nightly" data-search-js="search-00000000033a9c87.js" data-settings-js="settings-000000000a4e6193.js" ><script src="../static.files/storage-0000000036c0a5b4.js"></script><script defer src="../static.files/main-00000000ff7d71c8.js"></script><noscript><link rel="stylesheet" href="../static.files/noscript-00000000626a34ad.css"></noscript><link rel="alternate icon" type="image/png" href="../static.files/favicon-32x32-00000000d9d8501d.png"><link rel="icon" type="image/svg+xml" href="../static.files/favicon-00000000a292be17.svg"></head><body class="rustdoc mod sys"><!--[if lte IE 11]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="mobile-topbar"><button class="sidebar-menu-toggle" title="show sidebar"></button></nav><nav class="sidebar"><div class="sidebar-crate"><h2><a href="../cargo_make/index.html">cargo_make</a><span class="version">0.37.19</span></h2></div><div class="sidebar-elems"><section><ul class="block"><li><a href="#functions">Functions</a></li></ul></section></div></nav><div class="sidebar-resizer"></div><main><div class="width-limiter"><rustdoc-search></rustdoc-search><section id="main-content" class="content"><h1>List of all items</h1><h3 id="functions">Functions</h3><ul class="all-items"><li><a href="fn.get_name.html">get_name</a></li><li><a href="fn.main.html">main</a></li></ul></section></div></main></body></html>
1+
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="List of all items in this crate"><title>List of all items in this crate</title><script>if(window.location.protocol!=="file:")document.head.insertAdjacentHTML("beforeend","SourceSerif4-Regular-0000000007da4a04.ttf.woff2,FiraSans-Regular-0000000084b1ad12.woff2,FiraSans-Medium-0000000066e2bc86.woff2,SourceCodePro-Regular-0000000004ddb02d.ttf.woff2,SourceCodePro-Semibold-00000000f27a569e.ttf.woff2".split(",").map(f=>`<link rel="preload" as="font" type="font/woff2" crossorigin href="../static.files/${f}">`).join(""))</script><link rel="stylesheet" href="../static.files/normalize-0000000091fda82d.css"><link rel="stylesheet" href="../static.files/rustdoc-0000000094d0019d.css"><meta name="rustdoc-vars" data-root-path="../" data-static-root-path="../static.files/" data-current-crate="cargo_make" data-themes="" data-resource-suffix="" data-rustdoc-version="1.80.0-nightly (ada5e2c7b 2024-05-31)" data-channel="nightly" data-search-js="search-00000000033a9c87.js" data-settings-js="settings-000000000a4e6193.js" ><script src="../static.files/storage-0000000036c0a5b4.js"></script><script defer src="../static.files/main-00000000ff7d71c8.js"></script><noscript><link rel="stylesheet" href="../static.files/noscript-00000000626a34ad.css"></noscript><link rel="alternate icon" type="image/png" href="../static.files/favicon-32x32-00000000d9d8501d.png"><link rel="icon" type="image/svg+xml" href="../static.files/favicon-00000000a292be17.svg"></head><body class="rustdoc mod sys"><!--[if lte IE 11]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="mobile-topbar"><button class="sidebar-menu-toggle" title="show sidebar"></button></nav><nav class="sidebar"><div class="sidebar-crate"><h2><a href="../cargo_make/index.html">cargo_make</a><span class="version">0.37.20</span></h2></div><div class="sidebar-elems"><section><ul class="block"><li><a href="#functions">Functions</a></li></ul></section></div></nav><div class="sidebar-resizer"></div><main><div class="width-limiter"><rustdoc-search></rustdoc-search><section id="main-content" class="content"><h1>List of all items</h1><h3 id="functions">Functions</h3><ul class="all-items"><li><a href="fn.get_name.html">get_name</a></li><li><a href="fn.main.html">main</a></li></ul></section></div></main></body></html>

0 commit comments

Comments
 (0)