Releases: 1Computer1/myriad
Releases · 1Computer1/myriad
0.5.0.3
0.5.0.1
Changes
- Fixed cleanup log not outputting the correct time.
- Updated dependencies.
0.5.0.0
Changes
- Added new
outputLimit
option for limiting the size of the output from an evaluation. - Fixed output from stderr not being limited.
0.4.1.0
Changes
- Changed to
yaml
fromHsYAML
due to its GPL license.
0.4.0.1
Changes
- Added DOM library and
@types/node
to the Typescript image. - Updated dependencies in stack build.
- Created
hie.yaml
files for contributors using HIE/HLS.
0.4.0.0
Changes
First real release. For those using myriad before this, the repository for images was changed. Run this script to update existing ones:
#!/bin/sh
OLD="1computer1/comp_iler"
NEW="1computer1/myriad"
for image in $(docker images -a --format "{{.Repository}}:{{.Tag}}" | grep $OLD)
do
TAG=$(echo "$image" | cut -d ":" -f 2)
docker image tag "$OLD:$TAG" "$NEW:$TAG"
docker rmi "$OLD:$TAG"
done