Skip to content
This repository was archived by the owner on Aug 5, 2022. It is now read-only.

Commit 9d10d6f

Browse files
committed
update version number to 1.1.3
1 parent 44c1a5a commit 9d10d6f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ endif()
1010
project(Caffe C CXX)
1111

1212
# ---[ Caffe version
13-
set(CAFFE_TARGET_VERSION "1.1.2" CACHE STRING "Caffe logical version")
14-
set(CAFFE_TARGET_SOVERSION "1.1.2" CACHE STRING "Caffe soname version")
13+
set(CAFFE_TARGET_VERSION "1.1.3" CACHE STRING "Caffe logical version")
14+
set(CAFFE_TARGET_SOVERSION "1.1.3" CACHE STRING "Caffe soname version")
1515
add_definitions(-DCAFFE_VERSION=${CAFFE_TARGET_VERSION})
1616

1717
# ---[ Using cmake scripts and modules

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ LIB_BUILD_DIR := $(BUILD_DIR)/lib
102102
STATIC_NAME := $(LIB_BUILD_DIR)/lib$(LIBRARY_NAME).a
103103
DYNAMIC_VERSION_MAJOR := 1
104104
DYNAMIC_VERSION_MINOR := 1
105-
DYNAMIC_VERSION_REVISION := 2
105+
DYNAMIC_VERSION_REVISION := 3
106106
DYNAMIC_NAME_SHORT := lib$(LIBRARY_NAME).so
107107
#DYNAMIC_SONAME_SHORT := $(DYNAMIC_NAME_SHORT).$(DYNAMIC_VERSION_MAJOR)
108108
DYNAMIC_VERSIONED_NAME_SHORT := $(DYNAMIC_NAME_SHORT).$(DYNAMIC_VERSION_MAJOR).$(DYNAMIC_VERSION_MINOR).$(DYNAMIC_VERSION_REVISION)

docker/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ docker run -ti caffe:cpu caffe --version
1717
```
1818
which should show a message like:
1919
```
20-
caffe version 1.1.2
20+
caffe version 1.1.3
2121
```
2222

2323
One can also build and run the Caffe tests in the image using:

0 commit comments

Comments
 (0)