Skip to content

v1.4.1

Latest
Compare
Choose a tag to compare
@jonaslu jonaslu released this 11 Mar 19:05
· 27 commits to main since this release
  • Fix for bug with two env-vars on the same line (e g ${VAR1} ${VAR2}) was incorrectly expanded on two separate lines. Example with VAR1=1 VAR2=2:
[Headers]
${VAR1}=${VAR2}

Turned into:

curl \
-H "1=${VAR2} \
-H "${VAR1}=2"
  • Bump env-parse to 0.1.0