Skip to content

Commit 3c08e5a

Browse files
OpenPose v1.3.0
1 parent 7af0e8e commit 3c08e5a

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

doc/release_notes.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ OpenPose Library - Release Notes
168168

169169

170170

171-
## Current version (future OpenPose 1.3.0)
171+
## OpenPose 1.3.0 (Mar 24, 2018)
172172
1. Main improvements:
173173
1. Output of `--write_json` uses less hard disk space (enters and tabs removed).
174174
2. Removed Boost dependencies.
@@ -211,5 +211,12 @@ OpenPose Library - Release Notes
211211

212212

213213

214+
## Current version - future OpenPose 1.3.1
215+
1. Main improvements:
216+
2. Functions or parameters renamed:
217+
3. Main bugs fixed:
218+
219+
220+
214221
## All OpenPose Versions
215222
Download and/or check any OpenPose version from [https://github.com/CMU-Perceptual-Computing-Lab/openpose/releases](https://github.com/CMU-Perceptual-Computing-Lab/openpose/releases).

include/openpose/core/macros.hpp

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

99
// OpenPose name and version
1010
const std::string OPEN_POSE_NAME_STRING = "OpenPose";
11-
const std::string OPEN_POSE_VERSION_STRING = "1.2.1";
11+
const std::string OPEN_POSE_VERSION_STRING = "1.3.0";
1212
const std::string OPEN_POSE_NAME_AND_VERSION = OPEN_POSE_NAME_STRING + " " + OPEN_POSE_VERSION_STRING;
1313

1414
#ifndef _WIN32

ubuntu/Makefile.example

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 := 2
37-
DYNAMIC_VERSION_REVISION := 1
36+
DYNAMIC_VERSION_MINOR := 3
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)

0 commit comments

Comments
 (0)