]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
wcurl: import v2025.11.04
authorSamuel Henrique <samueloph@debian.org>
Tue, 4 Nov 2025 08:33:28 +0000 (08:33 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 4 Nov 2025 13:15:46 +0000 (14:15 +0100)
Closes #19353

docs/wcurl.md
scripts/wcurl

index ab5f956fc0295282f8f06a31e78dde6685f5268d..7d1200b2ea70e1560598361fe45b6692139abdc4 100644 (file)
@@ -40,7 +40,7 @@ should be using curl directly if your use case is not covered.
 
 By default, **wcurl** does:
 
-## * Percent-encode whitespaces in URLs;
+## * Percent-encode whitespace in URLs;
 
 ## * Download multiple URLs in parallel
     if the installed curl's version is \>= 7.66.0 (--parallel);
@@ -88,7 +88,7 @@ last value is considered.
 ## --no-decode-filename
 
 Don't percent-decode the output filename, even if the percent-encoding in the
-URL was done by **wcurl**, e.g.: The URL contained whitespaces.
+URL was done by **wcurl**, e.g.: The URL contained whitespace.
 
 ## --dry-run
 
@@ -110,7 +110,7 @@ is instead forwarded to the curl invocation.
 # URL
 
 URL to be downloaded. Anything that is not a parameter is considered
-an URL. Whitespaces are percent-encoded and the URL is passed to curl, which
+an URL. Whitespace is percent-encoded and the URL is passed to curl, which
 then performs the parsing. May be specified more than once.
 
 # EXAMPLES
@@ -144,7 +144,7 @@ Download multiple files without a limit of concurrent connections per host (the
 # REPORTING BUGS
 
 If you experience any problems with **wcurl** that you do not experience with
-curl, submit an issue on Github: https://github.com/curl/wcurl
+curl, submit an issue on GitHub: https://github.com/curl/wcurl
 
 # COPYRIGHT
 
index b1a06efe584dfc092527a770a0b93e4531a36df3..56c04ba9a4eec7ddcf409ea030ea717a1e1d1ec4 100755 (executable)
@@ -29,7 +29,7 @@
 # Stop on errors and on usage of unset variables.
 set -eu
 
-VERSION="2025.09.27+dev"
+VERSION="2025.11.04"
 
 PROGRAM_NAME="$(basename "$0")"
 readonly PROGRAM_NAME