Skip to content

Commit 5fd7661

Browse files
authored
Merge pull request #2360 from elBoberido/iox-1295-bump-version-to-2.95.3
iox-#1295 Bump version to v2.95.3
2 parents f88bc9c + 763ca5d commit 5fd7661

File tree

23 files changed

+57
-27
lines changed

23 files changed

+57
-27
lines changed

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module(
22
name = "org_eclipse_iceroyx",
3-
version = "2.95.0",
3+
version = "2.95.3",
44
)
55

66
bazel_dep(name = "bazel_skylib", version = "1.7.1")

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.95.2
1+
2.95.3

WORKSPACE.bazel

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,6 @@
1717
workspace(name = "org_eclipse_iceoryx")
1818

1919
# Load dependency googletest
20-
load("//bazel:load_repositories.bzl", "load_repositories")
20+
load("//bazel:deps.bzl", "iceoryx_deps")
2121

22-
load_repositories()
23-
24-
# Load dependency cpptoml
25-
load("//bazel:setup_repositories.bzl", "setup_repositories")
26-
27-
setup_repositories()
22+
iceoryx_deps()

bazel/deps.bzl

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
"""
2+
Copyright (c) 2024 by ekxide IO GmbH. All rights reserved.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
16+
SPDX-License-Identifier: Apache-2.0
17+
"""
18+
19+
load("//bazel:load_repositories.bzl", "load_repositories")
20+
load("//bazel:setup_repositories.bzl", "setup_repositories")
21+
22+
def iceoryx_deps():
23+
"""
24+
Loads iceoryx dependencies into workspace
25+
"""
26+
load_repositories()
27+
setup_repositories()

cmake/package/package.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#
1515
# SPDX-License-Identifier: Apache-2.0
1616
cmake_minimum_required(VERSION 3.16)
17-
set(IOX_VERSION_STRING "2.95.2")
17+
set(IOX_VERSION_STRING "2.95.3")
1818

1919
project(iceoryx_package VERSION ${IOX_VERSION_STRING})
2020

doc/aspice_swe3_4/CMakeLists.txt

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

1717
cmake_minimum_required(VERSION 3.16)
1818

19-
set(IOX_VERSION_STRING "2.95.2")
19+
set(IOX_VERSION_STRING "2.95.3")
2020

2121
project(iceoryx_doc VERSION ${IOX_VERSION_STRING})
2222

iceoryx_binding_c/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# SPDX-License-Identifier: Apache-2.0
1717
cmake_minimum_required(VERSION 3.16)
1818

19-
set(IOX_VERSION_STRING "2.95.2")
19+
set(IOX_VERSION_STRING "2.95.3")
2020

2121
project(iceoryx_binding_c VERSION ${IOX_VERSION_STRING})
2222

iceoryx_binding_c/cmake/iceoryx_binding_cConfigVersion.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
########## dummyConfig.cmake to be able to use find_package with a specific version with the source tree ##########
1919
#
2020

21-
set(IOX_VERSION_STRING "2.95.2")
21+
set(IOX_VERSION_STRING "2.95.3")
2222
set(PACKAGE_VERSION ${IOX_VERSION_STRING})
2323

2424
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)

iceoryx_binding_c/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>iceoryx_binding_c</name>
5-
<version>2.95.2</version>
5+
<version>2.95.3</version>
66
<description>Eclipse iceoryx inter-process-communication (IPC) middleware C-Language Binding</description>
77
<maintainer email="[email protected]">Eclipse Foundation, Inc.</maintainer>
88
<license>Apache 2.0</license>

iceoryx_hoofs/CMakeLists.txt

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

1818
cmake_minimum_required(VERSION 3.16)
1919

20-
set(IOX_VERSION_STRING "2.95.2")
20+
set(IOX_VERSION_STRING "2.95.3")
2121

2222
project(iceoryx_hoofs VERSION ${IOX_VERSION_STRING})
2323

0 commit comments

Comments
 (0)