Skip to content

Commit

Permalink
Bump libVersion to 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
anjaldoshi committed Jun 25, 2024
1 parent 78abf3a commit 6339eb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
package: NWBFormat-windows
run: |
plugin_api=$(grep -rnw ../../plugin-GUI/Source -e '#define PLUGIN_API_VER' | grep -Eo "[0-9]*" | tail -1)
tag=$(git describe --tags $(git rev-list --tags --max-count=1))
tag=$(grep -w Source/OpenEphysLib.cpp -e 'info->libVersion' | grep -Eo "[0-9]+.[0-9]+.[0-9]+")
new_plugin_ver=$tag-API$plugin_api
mkdir plugins
cp -v $build_dir/*.dll plugins
Expand Down
2 changes: 1 addition & 1 deletion Source/OpenEphysLib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ extern "C" EXPORT void getLibInfo(Plugin::LibraryInfo* info)
{
info->apiVersion = PLUGIN_API_VER;
info->name = "NWB2 Format";
info->libVersion = "0.2.1";
info->libVersion = "0.2.2";
info->numPlugins = NUM_PLUGINS;
}

Expand Down

0 comments on commit 6339eb7

Please sign in to comment.