0.9.10
Changes
- Environments got a new field:
IsTemplate
/is_template
. This field indicates whether the value contains template expressions which should be evaluated before using the value, just like in case ofis_expand
. This property is not used directly inenvman
, although this might change in the future. - Improved environment value and options cast:
- Now you can use
"NO"
,"No"
,"YES"
,"Yes"
,true
,false
,"true"
,"false"
in every placeenvman
expects a bool value (ex:is_expand
). - Every field where
envman
expects a string in now casted into a string. This means that you can now usetrue
andfalse
instead of"true"
and"false"
invalue_options
. Same is true for the value itself, so you can now writetrue
instead of"true"
and it'll still be casted to string.
- Now you can use
Install
To install this version, run the following commands (in a bash shell):
curl -fL https://github.com/bitrise-io/envman/releases/download/0.9.10/envman-$(uname -s)-$(uname -m) > /usr/local/bin/envman
Then:
chmod +x /usr/local/bin/envman