just/CHANGELOG.md
Casey Rodarmor 79c0994387
Add env_var(key) and env_var_or_default(key, default) functions (#280)
`env_var(key)` looks up the value of the environment variable with name `key`, aborting execution if it is not found.

`env_var_or_default(key, default)` looks up the value of the environment variable with name `key`, returning `default` if it is not found.
2017-12-02 23:59:07 +01:00

803 B

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

[Unreleased]

Added

  • Align doc-comments in --list output (#273)
  • Add arch(), os(), and os_family() functions (#277)
  • Add env_var(key) and env_var_or_default(key, default) functions (#280)

[0.3.4] - 2017-10-06

Added

  • Do not evaluate backticks in assignments during dry runs (#253)

Changed

  • Change license to CC0 going forward (#270)

[0.3.1] - 2017-10-06

Added

  • Started keeping a changelog in CHANGELOG.md (#220)
  • Recipes whose names begin with an underscore will not appear in --list or --summary (#229)