/*
  !MidiPlay   A MIDI synthesiser and file player.

  version.c - Version string and build time stamp.

  created  19/01/10
  1.0      14/06/14

  The makefile is written so that this file is compiled if any source file is changed.
  This is to update the build time stamp.
*/

#include "main.h"

// Update with the current version number
const char sw_version[] = APP_NAME" 0.21, " __DATE__ ", " __TIME__;
