Skip to content

Commit 4ff9bb3

Browse files
OpenPose 1.1.0
1 parent d423db5 commit 4ff9bb3

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ LIBRARY_NAME := $(PROJECT)
3333
LIB_BUILD_DIR := $(BUILD_DIR)/lib
3434
STATIC_NAME := $(LIB_BUILD_DIR)/lib$(LIBRARY_NAME).a
3535
DYNAMIC_VERSION_MAJOR := 1
36-
DYNAMIC_VERSION_MINOR := 0
37-
DYNAMIC_VERSION_REVISION := 2
36+
DYNAMIC_VERSION_MINOR := 1
37+
DYNAMIC_VERSION_REVISION := 0
3838
DYNAMIC_NAME_SHORT := lib$(LIBRARY_NAME).so
3939
#DYNAMIC_SONAME_SHORT := $(DYNAMIC_NAME_SHORT).$(DYNAMIC_VERSION_MAJOR)
4040
DYNAMIC_VERSIONED_NAME_SHORT := $(DYNAMIC_NAME_SHORT).$(DYNAMIC_VERSION_MAJOR).$(DYNAMIC_VERSION_MINOR).$(DYNAMIC_VERSION_REVISION)

doc/release_notes.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,16 @@ OpenPose Library - Release Notes
102102

103103

104104

105-
## Current version (future OpenPose 1.1.0)
105+
## OpenPose 1.1.0
106106
1. Main improvements:
107107
1. Added CMake installer for Ubuntu.
108108
2. Added how to use keypoint data in `examples/tutorial_wrapper/`.
109109
3. Added flag for warnings of type `-Wsign-compare` and removed in code.
110110
4. Slightly improved accuracy by considering ears-shoulder connection (e.g. 0.4 mAP for 1 scale in validation set).
111111
2. Main bugs fixed:
112112
1. Windows version crashing with std::map copy.
113+
114+
115+
116+
## Current version (future OpenPose 1.1.1)
117+
1. Main improvements:

src/openpose/gui/gui.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
namespace op
99
{
10-
const std::string OPEN_POSE_TEXT{"OpenPose 1.0.2"};
10+
const std::string OPEN_POSE_TEXT{"OpenPose 1.1.0"};
1111

1212
inline void showGuiHelp()
1313
{

windows/OpenPose/OpenPose.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
</CudaCompile>
6565
<Link>
6666
<AdditionalLibraryDirectories>$(CUDA_PATH_V8_0)\lib\x64\;$(PYTHON_LIB);$(CudaToolkitLibDir);%(AdditionalLibraryDirectories);%(AdditionalLibraryDirectories);</AdditionalLibraryDirectories>
67-
<Version>1.0.2</Version>
67+
<Version>1.1.0</Version>
6868
</Link>
6969
</ItemDefinitionGroup>
7070
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">

0 commit comments

Comments
 (0)