diff --git a/CMakeLists.txt b/CMakeLists.txt index c22bf983f..4e20812ef 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,8 +10,8 @@ endif() project(Caffe C CXX) # ---[ Caffe version -set(CAFFE_TARGET_VERSION "1.1.2" CACHE STRING "Caffe logical version") -set(CAFFE_TARGET_SOVERSION "1.1.2" CACHE STRING "Caffe soname version") +set(CAFFE_TARGET_VERSION "1.1.3" CACHE STRING "Caffe logical version") +set(CAFFE_TARGET_SOVERSION "1.1.3" CACHE STRING "Caffe soname version") add_definitions(-DCAFFE_VERSION=${CAFFE_TARGET_VERSION}) # ---[ Using cmake scripts and modules diff --git a/Makefile b/Makefile index 5d3bc5654..2f2416d36 100644 --- a/Makefile +++ b/Makefile @@ -102,7 +102,7 @@ LIB_BUILD_DIR := $(BUILD_DIR)/lib STATIC_NAME := $(LIB_BUILD_DIR)/lib$(LIBRARY_NAME).a DYNAMIC_VERSION_MAJOR := 1 DYNAMIC_VERSION_MINOR := 1 -DYNAMIC_VERSION_REVISION := 2 +DYNAMIC_VERSION_REVISION := 3 DYNAMIC_NAME_SHORT := lib$(LIBRARY_NAME).so #DYNAMIC_SONAME_SHORT := $(DYNAMIC_NAME_SHORT).$(DYNAMIC_VERSION_MAJOR) DYNAMIC_VERSIONED_NAME_SHORT := $(DYNAMIC_NAME_SHORT).$(DYNAMIC_VERSION_MAJOR).$(DYNAMIC_VERSION_MINOR).$(DYNAMIC_VERSION_REVISION) diff --git a/docker/README.md b/docker/README.md index d61cb6e58..97dcbb26a 100644 --- a/docker/README.md +++ b/docker/README.md @@ -17,7 +17,7 @@ docker run -ti caffe:cpu caffe --version ``` which should show a message like: ``` -caffe version 1.1.2 +caffe version 1.1.3 ``` One can also build and run the Caffe tests in the image using: