2019-05-07 19:37:40 -07:00
|
|
|
|
Changelog
|
|
|
|
|
=========
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[v0.4.3] - 2019-05-07
|
|
|
|
|
---------------------
|
|
|
|
|
|
|
|
|
|
### Changed
|
|
|
|
|
- Deprecate `=` in assignments, aliases, and exports in favor of `:=` (#413)
|
|
|
|
|
|
|
|
|
|
### Added
|
|
|
|
|
- Pass stdin handle to backtick process (#409)
|
|
|
|
|
|
|
|
|
|
### Documented
|
|
|
|
|
- Fix readme command line (#411)
|
|
|
|
|
- Typo: "command equivelant" -> "command equivalent" (#418)
|
|
|
|
|
- Mention Make’s “phony target” workaround in the comparison (#421)
|
|
|
|
|
- Add Void Linux install instructions to readme (#423)
|
|
|
|
|
|
|
|
|
|
### Cleaned up or Refactored
|
|
|
|
|
- Remove stray source files (#408)
|
|
|
|
|
- Replace some calls to brev crate (#410)
|
|
|
|
|
- Lexer code deduplication and refactoring (#414)
|
|
|
|
|
- Refactor and rename test macros (#415)
|
|
|
|
|
- Move CompilationErrorKind into separate module (#416)
|
|
|
|
|
- Remove `write_token_error_context` (#417)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[v0.4.2] - 2019-04-12
|
|
|
|
|
---------------------
|
2017-08-25 01:40:57 -07:00
|
|
|
|
|
2019-04-15 23:39:18 -07:00
|
|
|
|
### Changed
|
|
|
|
|
- Regex-based lexer replaced with much nicer character-at-a-time lexer (#406)
|
|
|
|
|
|
2019-05-07 19:37:40 -07:00
|
|
|
|
|
|
|
|
|
[v0.4.1] - 2019-04-12
|
|
|
|
|
---------------------
|
|
|
|
|
|
2019-04-15 14:45:40 -07:00
|
|
|
|
### Changed
|
|
|
|
|
- Make summary function non-generic (#404)
|
|
|
|
|
|
2019-05-07 19:37:40 -07:00
|
|
|
|
|
|
|
|
|
[v0.4.0] - 2019-04-12
|
|
|
|
|
---------------------
|
|
|
|
|
|
2019-04-12 00:46:29 -07:00
|
|
|
|
### Added
|
|
|
|
|
- Add recipe aliases by @ryloric (#390)
|
|
|
|
|
- Allow arbitrary expressions as default arguments (#400)
|
|
|
|
|
- Add justfile summaries (#399)
|
|
|
|
|
- Allow outer shebang lines so justfiles can be used as scripts (#393)
|
|
|
|
|
- Allow `--justfile` without `--working-directory` by @smonami (#392)
|
|
|
|
|
- Add link to Chinese translation of readme by @chinanf-boy (#377)
|
2017-08-25 01:40:57 -07:00
|
|
|
|
|
2019-04-12 00:46:29 -07:00
|
|
|
|
### Changed
|
|
|
|
|
- Upgrade to Rust 2018 (#394)
|
|
|
|
|
- Format the codebase with rustfmt (#346)
|
2017-08-25 01:40:57 -07:00
|
|
|
|
|
2019-05-07 19:37:40 -07:00
|
|
|
|
|
|
|
|
|
[v0.3.13] - 2018-11-06
|
|
|
|
|
----------------------
|
|
|
|
|
|
2018-11-06 01:00:34 -08:00
|
|
|
|
### Added
|
|
|
|
|
- Print recipe signature if missing arguments (#369)
|
|
|
|
|
- Add grandiloquent verbosity level that echos shebang recipes (#348)
|
|
|
|
|
- Wait for child processes to finish (#345)
|
|
|
|
|
- Improve invalid escape sequence error messages (#328)
|
|
|
|
|
|
|
|
|
|
### Fixed
|
|
|
|
|
- Use PutBackN instead of PutBack in parser (#364)
|
|
|
|
|
|
2019-05-07 19:37:40 -07:00
|
|
|
|
|
|
|
|
|
[v0.3.12] - 2018-06-19
|
|
|
|
|
----------------------
|
|
|
|
|
|
2018-06-19 13:21:32 -07:00
|
|
|
|
### Added
|
|
|
|
|
- Implemented invocation_directory function
|
|
|
|
|
|
2019-05-07 19:37:40 -07:00
|
|
|
|
|
|
|
|
|
[v0.3.11] - 2018-05-6
|
|
|
|
|
---------------------
|
|
|
|
|
|
2018-06-19 13:21:32 -07:00
|
|
|
|
### Fixed
|
|
|
|
|
- Fixed colors on windows (#317)
|
|
|
|
|
|
2019-05-07 19:37:40 -07:00
|
|
|
|
|
|
|
|
|
[v0.3.10] - 2018-3-19
|
|
|
|
|
---------------------
|
|
|
|
|
|
|
|
|
|
### Added
|
2018-03-20 01:25:32 -07:00
|
|
|
|
- Make .env vars available in env_var functions (#310)
|
|
|
|
|
|
2019-05-07 19:37:40 -07:00
|
|
|
|
|
|
|
|
|
[v0.3.8] - 2018-3-5
|
|
|
|
|
-------------------
|
|
|
|
|
|
2018-03-05 13:28:30 -08:00
|
|
|
|
## Added
|
|
|
|
|
- Add dotenv integration (#306)
|
|
|
|
|
|
2019-05-07 19:37:40 -07:00
|
|
|
|
|
|
|
|
|
[v0.3.7] - 2017-12-11
|
|
|
|
|
---------------------
|
|
|
|
|
|
2018-01-22 23:32:37 -08:00
|
|
|
|
### Fixed
|
|
|
|
|
- Fix error if ! appears in comment (#296)
|
2017-12-11 12:44:45 -08:00
|
|
|
|
|
2019-05-07 19:37:40 -07:00
|
|
|
|
|
|
|
|
|
[v0.3.6] - 2017-12-11
|
|
|
|
|
---------------------
|
|
|
|
|
|
2018-01-05 02:11:10 -08:00
|
|
|
|
### Fixed
|
|
|
|
|
- Lex CRLF line endings properly (#292)
|
|
|
|
|
|
2019-05-07 19:37:40 -07:00
|
|
|
|
|
|
|
|
|
[v0.3.5] - 2017-12-11
|
|
|
|
|
---------------------
|
|
|
|
|
|
2017-12-02 06:16:52 -08:00
|
|
|
|
### Added
|
|
|
|
|
- Align doc-comments in `--list` output (#273)
|
|
|
|
|
- Add `arch()`, `os()`, and `os_family()` functions (#277)
|
2017-12-02 14:59:07 -08:00
|
|
|
|
- Add `env_var(key)` and `env_var_or_default(key, default)` functions (#280)
|
2017-10-06 23:48:07 -07:00
|
|
|
|
|
2019-05-07 19:37:40 -07:00
|
|
|
|
|
|
|
|
|
[v0.3.4] - 2017-10-06
|
|
|
|
|
---------------------
|
|
|
|
|
|
2017-11-30 10:38:44 -08:00
|
|
|
|
### Added
|
2017-11-19 23:16:55 -08:00
|
|
|
|
- Do not evaluate backticks in assignments during dry runs (#253)
|
|
|
|
|
|
2017-11-30 10:38:44 -08:00
|
|
|
|
### Changed
|
|
|
|
|
- Change license to CC0 going forward (#270)
|
|
|
|
|
|
2019-05-07 19:37:40 -07:00
|
|
|
|
|
|
|
|
|
[v0.3.1] - 2017-10-06
|
|
|
|
|
---------------------
|
|
|
|
|
|
2017-08-25 01:40:57 -07:00
|
|
|
|
### Added
|
2017-11-19 23:16:55 -08:00
|
|
|
|
- Started keeping a changelog in CHANGELOG.md (#220)
|
|
|
|
|
- Recipes whose names begin with an underscore will not appear in `--list` or `--summary` (#229)
|