Skip to content

Commit

Permalink
Release v3.0.8
Browse files Browse the repository at this point in the history
Signed-off-by: Siddharth Chandrasekaran <[email protected]>
  • Loading branch information
sidcha committed Nov 12, 2024
1 parent 87d3408 commit 8c334ad
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
v3.0.8
------

12 November 2024

A quick re-relase of v3.0.7 with 2 critical fixes needed for Rust and
PlatformIO. Refer to previous relase for actual change log.

Fixes:
- utils: Bump submodule to get __BARE_METAL__ target fix
- scripts: Fix make-release.sh after PlatformIO changes


v3.0.7
------

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
cmake_policy(SET CMP0063 NEW)

project(libosdp VERSION 3.0.7)
project(libosdp VERSION 3.0.8)

set(PROJECT_AUTHOR "Siddharth Chandrasekaran")
set(PROJECT_AUTHOR_EMAIL "[email protected]")
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "LibOSDP",
"version": "3.0.7",
"version": "3.0.8",
"description": "A cross-platform open source implementation of IEC 60839-11-5 Open Supervised Device Protocol (OSDP). The protocol is intended to improve interoperability among access control and security products. It supports Secure Channel (SC) for encrypted and authenticated communication between configured devices.",
"authors": [{
"name": "Siddharth Chandrasekaran",
Expand Down
2 changes: 1 addition & 1 deletion platformio/osdp_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* @brief The following macros are defined defined from the variable in cmake
* files. All @XXX@ are replaced by the value of XXX as resolved by cmake.
*/
#define PROJECT_VERSION "3.0.7"
#define PROJECT_VERSION "3.0.8"
#define PROJECT_NAME "libosdp"
#define GIT_BRANCH "platformio"
#define GIT_REV ""
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import subprocess

project_name = "libosdp"
project_version = "3.0.7"
project_version = "3.0.8"
current_dir = os.path.dirname(os.path.realpath(__file__))
repo_root = os.path.realpath(os.path.join(current_dir, ".."))

Expand Down

0 comments on commit 8c334ad

Please sign in to comment.