From cb2b1d918817bffd093f98b1c411c82d634ab805 Mon Sep 17 00:00:00 2001 From: Anjal Doshi Date: Mon, 5 Aug 2024 18:40:32 -0700 Subject: [PATCH] Bump plugin version to 0.2.0 --- Source/OpenEphysLib.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/OpenEphysLib.cpp b/Source/OpenEphysLib.cpp index 316f9ba..c98c727 100644 --- a/Source/OpenEphysLib.cpp +++ b/Source/OpenEphysLib.cpp @@ -26,7 +26,7 @@ along with this program. If not, see . #include -#ifdef WIN32 +#ifdef _WIN32 #include #define EXPORT __declspec (dllexport) #else @@ -44,7 +44,7 @@ extern "C" EXPORT void getLibInfo (Plugin::LibraryInfo* info) The GUI refueses to load plugins with mismatched API versions */ info->apiVersion = PLUGIN_API_VER; info->name = "Data Snapshot"; // Name of the plugin library - info->libVersion = "0.1.0"; //Version of the plugin + info->libVersion = "0.2.0"; //Version of the plugin info->numPlugins = NUM_PLUGINS; }