Skip to content

Releases: 1Computer1/myriad

0.5.0.3

22 Jun 10:12
Compare
Choose a tag to compare

Changes

  • Bumped version for builds.

0.5.0.1

22 Jun 09:09
Compare
Choose a tag to compare

Changes

  • Fixed cleanup log not outputting the correct time.
  • Updated dependencies.

0.5.0.0

22 Jun 07:02
Compare
Choose a tag to compare

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

20 Jun 22:04
Compare
Choose a tag to compare

Changes

  • Changed to yaml from HsYAML due to its GPL license.

0.4.0.1

19 Jun 13:55
Compare
Choose a tag to compare

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

17 Jun 07:10
Compare
Choose a tag to compare

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