Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Project version 2.2.5.16 #646

Merged
merged 1 commit into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.10)
project(iotivity-lite VERSION 2.2.5.15)
project(iotivity-lite VERSION 2.2.5.16)

include(GNUInstallDirs) # Installation directories for `install` command and pkgconfig file

Expand Down
6 changes: 3 additions & 3 deletions include/oc_build_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@
#define IOTIVITY_LITE_VERSION_MAJOR 2
#define IOTIVITY_LITE_VERSION_MINOR 2
#define IOTIVITY_LITE_VERSION_PATCH 5
#define IOTIVITY_LITE_VERSION_BUILD 15
#define IOTIVITY_LITE_VERSION_BUILD 16

/**
* The IoTivity-lite version number has the following structure:
* MMNNPPBB
* Major version | Minor version | Patch version | Build version
*/
#define IOTIVITY_LITE_VERSION 0x0202050F
#define IOTIVITY_LITE_VERSION_STRING "2.2.5.15"
#define IOTIVITY_LITE_VERSION 0x02020510
#define IOTIVITY_LITE_VERSION_STRING "2.2.5.16"

/**
* OCF Specification
Expand Down
4 changes: 2 additions & 2 deletions port/linux/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ ROOT_DIR = ../..
SWIG_DIR = ${ROOT_DIR}/swig
OUT_DIR = $(ROOT_DIR)/port/$(OS)
CHECK_SCRIPT = ../../tools/check.py
# project version: 2.2.5.15
# project version: 2.2.5.16
VERSION_MAJOR = 2
VERSION_MINOR = 2
VERSION_PATCH = 5
VERSION_BUILD = 15
VERSION_BUILD = 16
VERSION = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH).$(VERSION_BUILD)
DYNAMIC ?= 1
Danielius1922 marked this conversation as resolved.
Show resolved Hide resolved
export SECURE ?= 1
Expand Down
Loading