diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 000000000..408147799 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,6 @@ +# libDaisy Changelog + +## v0.1.0 + +Initial Release + diff --git a/CMakeLists.txt b/CMakeLists.txt index 63d805fcb..6fab68352 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -project (libdaisy) +project (libdaisy VERSION 0.1.0) cmake_minimum_required(VERSION 3.20) set(TARGET daisy) diff --git a/src/daisy.h b/src/daisy.h index 283bb67cc..4ef1f7caa 100644 --- a/src/daisy.h +++ b/src/daisy.h @@ -3,6 +3,7 @@ #include #include "daisy_core.h" +#include "version.h" /** @addtogroup boards @{ diff --git a/src/version.h b/src/version.h new file mode 100644 index 000000000..4d8aaadaa --- /dev/null +++ b/src/version.h @@ -0,0 +1,9 @@ +#pragma once +#ifndef DSY_VERSION_H +#define DSY_VERSION_H + +#define LIBDAISY_VER_MAJ 0 +#define LIBDAISY_VER_MIN 1 +#define LIBDAISY_VER_PATCH 0 + +#endif