From 3c08e5a8c4f2b2b386cdc137a7a1c5687dc06978 Mon Sep 17 00:00:00 2001 From: gineshidalgo99 Date: Sat, 24 Mar 2018 12:30:06 -0400 Subject: [PATCH] OpenPose v1.3.0 --- doc/release_notes.md | 9 ++++++++- include/openpose/core/macros.hpp | 2 +- ubuntu/Makefile.example | 4 ++-- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/doc/release_notes.md b/doc/release_notes.md index c56589e1..4a6e806f 100644 --- a/doc/release_notes.md +++ b/doc/release_notes.md @@ -168,7 +168,7 @@ OpenPose Library - Release Notes -## Current version (future OpenPose 1.3.0) +## OpenPose 1.3.0 (Mar 24, 2018) 1. Main improvements: 1. Output of `--write_json` uses less hard disk space (enters and tabs removed). 2. Removed Boost dependencies. @@ -211,5 +211,12 @@ OpenPose Library - Release Notes +## Current version - future OpenPose 1.3.1 +1. Main improvements: +2. Functions or parameters renamed: +3. Main bugs fixed: + + + ## All OpenPose Versions 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). diff --git a/include/openpose/core/macros.hpp b/include/openpose/core/macros.hpp index 2033da47..4a415db7 100644 --- a/include/openpose/core/macros.hpp +++ b/include/openpose/core/macros.hpp @@ -8,7 +8,7 @@ // OpenPose name and version const std::string OPEN_POSE_NAME_STRING = "OpenPose"; -const std::string OPEN_POSE_VERSION_STRING = "1.2.1"; +const std::string OPEN_POSE_VERSION_STRING = "1.3.0"; const std::string OPEN_POSE_NAME_AND_VERSION = OPEN_POSE_NAME_STRING + " " + OPEN_POSE_VERSION_STRING; #ifndef _WIN32 diff --git a/ubuntu/Makefile.example b/ubuntu/Makefile.example index e740121d..783fefc3 100644 --- a/ubuntu/Makefile.example +++ b/ubuntu/Makefile.example @@ -33,8 +33,8 @@ LIBRARY_NAME := $(PROJECT) LIB_BUILD_DIR := $(BUILD_DIR)/lib STATIC_NAME := $(LIB_BUILD_DIR)/lib$(LIBRARY_NAME).a DYNAMIC_VERSION_MAJOR := 1 -DYNAMIC_VERSION_MINOR := 2 -DYNAMIC_VERSION_REVISION := 1 +DYNAMIC_VERSION_MINOR := 3 +DYNAMIC_VERSION_REVISION := 0 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) -- GitLab