Skip to content

Commit

Permalink
Merge pull request #2360 from elBoberido/iox-1295-bump-version-to-2.95.3
Browse files Browse the repository at this point in the history
iox-#1295 Bump version to v2.95.3
  • Loading branch information
elBoberido authored Oct 15, 2024
2 parents f88bc9c + 763ca5d commit 5fd7661
Show file tree
Hide file tree
Showing 23 changed files with 57 additions and 27 deletions.
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module(
name = "org_eclipse_iceroyx",
version = "2.95.0",
version = "2.95.3",
)

bazel_dep(name = "bazel_skylib", version = "1.7.1")
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.95.2
2.95.3
9 changes: 2 additions & 7 deletions WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@
workspace(name = "org_eclipse_iceoryx")

# Load dependency googletest
load("//bazel:load_repositories.bzl", "load_repositories")
load("//bazel:deps.bzl", "iceoryx_deps")

load_repositories()

# Load dependency cpptoml
load("//bazel:setup_repositories.bzl", "setup_repositories")

setup_repositories()
iceoryx_deps()
27 changes: 27 additions & 0 deletions bazel/deps.bzl
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
"""
Copyright (c) 2024 by ekxide IO GmbH. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
SPDX-License-Identifier: Apache-2.0
"""

load("//bazel:load_repositories.bzl", "load_repositories")
load("//bazel:setup_repositories.bzl", "setup_repositories")

def iceoryx_deps():
"""
Loads iceoryx dependencies into workspace
"""
load_repositories()
setup_repositories()
2 changes: 1 addition & 1 deletion cmake/package/package.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#
# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.16)
set(IOX_VERSION_STRING "2.95.2")
set(IOX_VERSION_STRING "2.95.3")

project(iceoryx_package VERSION ${IOX_VERSION_STRING})

Expand Down
2 changes: 1 addition & 1 deletion doc/aspice_swe3_4/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

cmake_minimum_required(VERSION 3.16)

set(IOX_VERSION_STRING "2.95.2")
set(IOX_VERSION_STRING "2.95.3")

project(iceoryx_doc VERSION ${IOX_VERSION_STRING})

Expand Down
2 changes: 1 addition & 1 deletion iceoryx_binding_c/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.16)

set(IOX_VERSION_STRING "2.95.2")
set(IOX_VERSION_STRING "2.95.3")

project(iceoryx_binding_c VERSION ${IOX_VERSION_STRING})

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
########## dummyConfig.cmake to be able to use find_package with a specific version with the source tree ##########
#

set(IOX_VERSION_STRING "2.95.2")
set(IOX_VERSION_STRING "2.95.3")
set(PACKAGE_VERSION ${IOX_VERSION_STRING})

if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
Expand Down
2 changes: 1 addition & 1 deletion iceoryx_binding_c/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>iceoryx_binding_c</name>
<version>2.95.2</version>
<version>2.95.3</version>
<description>Eclipse iceoryx inter-process-communication (IPC) middleware C-Language Binding</description>
<maintainer email="iceoryx-oss-support@apex.ai">Eclipse Foundation, Inc.</maintainer>
<license>Apache 2.0</license>
Expand Down
2 changes: 1 addition & 1 deletion iceoryx_hoofs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

cmake_minimum_required(VERSION 3.16)

set(IOX_VERSION_STRING "2.95.2")
set(IOX_VERSION_STRING "2.95.3")

project(iceoryx_hoofs VERSION ${IOX_VERSION_STRING})

Expand Down
2 changes: 1 addition & 1 deletion iceoryx_hoofs/cmake/iceoryx_hoofsConfigVersion.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
########## dummyConfig.cmake to be able to use find_package with a specific version with the source tree ##########
#

set(IOX_VERSION_STRING "2.95.2")
set(IOX_VERSION_STRING "2.95.3")
set(PACKAGE_VERSION ${IOX_VERSION_STRING})

if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
Expand Down
2 changes: 1 addition & 1 deletion iceoryx_hoofs/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>iceoryx_hoofs</name>
<version>2.95.2</version>
<version>2.95.3</version>
<description>Eclipse iceoryx inter-process-communication (IPC) middleware basic building blocks</description>
<maintainer email="iceoryx-oss-support@apex.ai">Eclipse Foundation, Inc.</maintainer>
<license>Apache 2.0</license>
Expand Down
2 changes: 1 addition & 1 deletion iceoryx_integrationtest/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>iceoryx_integrationtest</name>
<version>2.95.2</version>
<version>2.95.3</version>
<description>iceoryx Software Integrationtest</description>
<maintainer email="iceoryx-oss-support@apex.ai">Eclipse Foundation, Inc.</maintainer>
<license>Apache 2.0</license>
Expand Down
2 changes: 1 addition & 1 deletion iceoryx_platform/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

cmake_minimum_required(VERSION 3.16)

set(IOX_VERSION_STRING "2.95.2")
set(IOX_VERSION_STRING "2.95.3")
project(iceoryx_platform VERSION ${IOX_VERSION_STRING})

if(UNIX AND NOT APPLE)
Expand Down
2 changes: 1 addition & 1 deletion iceoryx_platform/cmake/iceoryx_platformConfigVersion.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
########## dummyConfig.cmake to be able to use find_package with a specific version with the source tree ##########
#

set(IOX_VERSION_STRING "2.95.2")
set(IOX_VERSION_STRING "2.95.3")
set(PACKAGE_VERSION ${IOX_VERSION_STRING})

if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
Expand Down
2 changes: 1 addition & 1 deletion iceoryx_platform/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>iceoryx_platform</name>
<version>2.95.2</version>
<version>2.95.3</version>
<description>Eclipse iceoryx inter-process-communication (IPC) middleware platform</description>
<maintainer email="iceoryx-oss-support@apex.ai">Eclipse Foundation, Inc.</maintainer>
<license>Apache 2.0</license>
Expand Down
2 changes: 1 addition & 1 deletion iceoryx_posh/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.16)

set(IOX_VERSION_STRING "2.95.2")
set(IOX_VERSION_STRING "2.95.3")

project(iceoryx_posh VERSION ${IOX_VERSION_STRING})

Expand Down
2 changes: 1 addition & 1 deletion iceoryx_posh/cmake/iceoryx_poshConfigVersion.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
########## dummyConfig.cmake to be able to use find_package with a specific version with the source tree ##########
#

set(IOX_VERSION_STRING "2.95.2")
set(IOX_VERSION_STRING "2.95.3")
set(PACKAGE_VERSION ${IOX_VERSION_STRING})

if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
Expand Down
2 changes: 1 addition & 1 deletion iceoryx_posh/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>iceoryx_posh</name>
<version>2.95.2</version>
<version>2.95.3</version>
<description>Eclipse iceoryx inter-process-communication (IPC) middleware Posix Shared Memory Library and middleware daemon (RouDi)</description>
<maintainer email="iceoryx-oss-support@apex.ai">Eclipse Foundation, Inc.</maintainer>
<license>Apache 2.0</license>
Expand Down
2 changes: 1 addition & 1 deletion tools/introspection/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

cmake_minimum_required(VERSION 3.16)

set(IOX_VERSION_STRING "2.95.2")
set(IOX_VERSION_STRING "2.95.3")

project(iceoryx_introspection VERSION ${IOX_VERSION_STRING})

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
########## dummyConfig.cmake to be able to use find_package with a specific version with the source tree ##########
#

set(IOX_VERSION_STRING "2.95.2")
set(IOX_VERSION_STRING "2.95.3")
set(PACKAGE_VERSION ${IOX_VERSION_STRING})

if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
Expand Down
2 changes: 1 addition & 1 deletion tools/introspection/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>iceoryx_introspection</name>
<version>2.95.2</version>
<version>2.95.3</version>
<description>Eclipse iceoryx inter-process-communication (IPC) middleware introspection client</description>
<maintainer email="iceoryx-oss-support@apex.ai">Eclipse Foundation, Inc.</maintainer>
<license>Apache 2.0</license>
Expand Down
8 changes: 8 additions & 0 deletions tools/scripts/iceoryx_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,14 @@ select yn in "Yes" "No"; do
esac
done

echo "Did you updated the VERSION in MODULE.bazel?"
select yn in "Yes" "No"; do
case $yn in
Yes ) break;;
No ) exit 0;;
esac
done

target_version=$(head -n 1 "$WORKSPACE/VERSION")
echo "The new version number will be: $target_version"

Expand Down

0 comments on commit 5fd7661

Please sign in to comment.