diff --git a/Doxyfile b/Doxyfile index 8febb50..d38ec89 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "MetaWear C++ API" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 0.20.7 +PROJECT_NUMBER = 0.20.8 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/README.md b/README.md index 376efa3..32b6701 100644 --- a/README.md +++ b/README.md @@ -75,8 +75,8 @@ dist/ └── lib └── x64 ├── libmetawear.so -> libmetawear.so.0 - ├── libmetawear.so.0 -> libmetawear.so.0.20.7 - └── libmetawear.so.0.20.7 + ├── libmetawear.so.0 -> libmetawear.so.0.20.8 + └── libmetawear.so.0.20.8 ``` diff --git a/c-binding-generator/Makefile b/c-binding-generator/Makefile index 372846f..bfa2444 100644 --- a/c-binding-generator/Makefile +++ b/c-binding-generator/Makefile @@ -2,7 +2,7 @@ include config.mk -CXXFLAGS+=-std=c++11 -Wall -Werror -I$(SOURCE_DIR) -I/usr/lib/llvm-7/include +CXXFLAGS+=-std=c++11 -Wall -Werror -I$(SOURCE_DIR) -I/usr/local/opt/llvm/include/ ifeq ($(CONFIGURATION),debug) CXXFLAGS+=-g @@ -13,7 +13,7 @@ else ifeq ($(CONFIGURATION),release) else $(error Invalid value for "CONFIGURATION", must be 'release' or 'debug') endif -LDFLAGS+=-lclang -ldl -rdynamic -L/usr/lib/llvm-7/lib +LDFLAGS+=-lclang -ldl -rdynamic -L/usr/local/opt/llvm/lib ifeq ($(MACHINE),x86) CXXFLAGS+=-m32 diff --git a/project_version.mk b/project_version.mk index 810ecec..cf8aa29 100644 --- a/project_version.mk +++ b/project_version.mk @@ -1,4 +1,4 @@ -VERSION=0.20.7 +VERSION=0.20.8 VERSION_MAJOR=0 VERSION_MINOR=20 -VERSION_STEP=7 +VERSION_STEP=8