Skip to content

v0.4.0

Compare
Choose a tag to compare
@github-actions github-actions released this 07 Jan 17:29
· 12 commits to master since this release

Changelog

Bug fixes

  • Correctly infer wavedrom type (#16)

Improvements

  • Add BPMN, Bytefield and Excalidraw diagram types (#20)
  • Add an encode command (#19)
$ echo "digraph G {Hello->World}" | kroki encode -
eNpKyUwvSizIUHBXqPZIzcnJ17ULzy_KSanlAgQAAP__dRAI0A==
$ kroki encode hello.graphviz
eNpKyUwvSizIUHBXqPZIzcnJ17ULzy_KSanlAgQAAP__dRAI0A==

e1b491e Add a decode command (#21)

$ echo "eNpKyUwvSizIUHBXqPZIzcnJ17ULzy_KSakFBAAA__9sQAjG" | kroki decode -
digraph G {Hello->World}
$ kroki decode https://kroki.io/graphviz/svg/eNpKyUwvSizIUHBXqPZIzcnJ17ULzy_KSakFBAAA__9sQAjG
digraph G {Hello->World}
  • Replace hardcoded argument parsing, help text with mappings (#13) - thanks @ferdnyc

Infrastructure

  • Add GITHUB_TOKEN as environment variable
  • Replace Travis by GitHub Actions (#18)
  • Upgrade to kroki-go v0.6.2