Releases: srackham/drake
Releases · srackham/drake
v1.7.0
- Replace deprecated
Deno.run
function with Deno.Command
class (Drake sh
and shCapture
APIs).
- Compatibility updates for Deno 1.4 release.
v1.6.0
1.6.0 / 2022-07-19
- Added
stat(path)
API function which returns information about a file or null
if the file does not exist.
- Added
remove(...patterns)
API function which deletes files matching the wildcard patterns.
- FIX:
glob
API fails if pattern begins with a nonexistent directory e.g. non-existent-directory/*
.
v1.5.2
1.5.2 / 2022-05-20
- FIX: Drake crashes when listing tasks with no description (#18).
- Upgraded to Deno 1.22.0, standard modules 0.140.0.
v1.5.1
1.5.1 / 2022-02-20
- Upgraded to Deno 1.19.0, standard modules 0.123.0.
v1.5.0
1.5.0 / 2021-05-27
- Added
--verbose
command-line option (currently it prints sh
and shCapture
API calls).
- Drake execution output now highlights execution times.
- Upgraded to Deno vrsion 1.10.2,
std@0.97.0
.
v1.4.7
1.4.7 / 2021-04-21
- Upgraded to Deno version 1.9.0,
std@0.93.0
.
v1.4.6
1.4.6 / 2021-01-06
- Upgraded to Deno version 1.6.3,
std@0.83.0
.
v1.4.5
1.4.5 / 2020-11-16
- Upgraded to Deno version 1.5.2,
std@0.77.0
.
v1.4.4
1.4.4 / 2020-10-12
- Upgraded to Deno version 1.4.6,
std@0.74.0
.
v1.4.3
1.4.3 / 2020-10-04
- Included
env
API in lib.ts
.
- On MS Windows use the PowerShell instead of
cmd.exe
to execute shell commands.
- Implemented Github Actions workflow for testing.