From 1f9433d9720fed232b8e4df321eaeb33a6baa04f Mon Sep 17 00:00:00 2001 From: Kai Hermann Date: Mon, 3 Jun 2024 18:32:31 +0200 Subject: [PATCH] Update version to 2024.5.0 (#689) * Update version to 2024.5.0 * Bump dependencies of libocpp and libevse-security to recent tags --------- Signed-off-by: Kai-Uwe Hermann --- CMakeLists.txt | 2 +- dependencies.yaml | 4 ++-- third-party/bazel/deps_versions.bzl | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5c9245035..56d3a72e7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.14.7) project(everest-core - VERSION 2024.4.0 + VERSION 2024.5.0 DESCRIPTION "The open operating system for e-mobility charging stations" LANGUAGES CXX C ) diff --git a/dependencies.yaml b/dependencies.yaml index 89a02997a..3cbe51a9d 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -50,13 +50,13 @@ libcurl: # and would otherwise be overwritten by the version used there libevse-security: git: https://github.com/EVerest/libevse-security.git - git_tag: 4330ce2e28e25535dd01558edb2331891c146769 + git_tag: v0.7.0 cmake_condition: "EVEREST_DEPENDENCY_ENABLED_LIBEVSE_SECURITY" # OCPP libocpp: git: https://github.com/EVerest/libocpp.git - git_tag: 6c2cdead9bdc288f6998ca1a5e6292514f3a41c9 + git_tag: v0.12.0 cmake_condition: "EVEREST_DEPENDENCY_ENABLED_LIBOCPP" # Josev Josev: diff --git a/third-party/bazel/deps_versions.bzl b/third-party/bazel/deps_versions.bzl index 6531519a9..832cc64c7 100644 --- a/third-party/bazel/deps_versions.bzl +++ b/third-party/bazel/deps_versions.bzl @@ -46,8 +46,8 @@ EVEREST_DEPS = struct( # libevse-security libevse_security_repo = "https://github.com/EVerest/libevse-security.git", - libevse_security_commit = "4330ce2e28e25535dd01558edb2331891c146769", - libevse_security_tag = None, + libevse_security_commit = None, + libevse_security_tag = "v0.7.0", # libfsm libfsm_repo = "https://github.com/EVerest/libfsm.git", @@ -61,8 +61,8 @@ EVEREST_DEPS = struct( # libocpp libocpp_repo = "https://github.com/EVerest/libocpp.git", - libocpp_commit = "6c2cdead9bdc288f6998ca1a5e6292514f3a41c9", - libocpp_tag = None, + libocpp_commit = None, + libocpp_tag = "v0.12.0", # libslac libslac_repo = "https://github.com/EVerest/libslac.git",