Skip to content

Commit a584902

Browse files
author
Felix Exner
authored
Release v2.0.0 (#29)
Prepare for release v2.0.0
1 parent ac829de commit a584902

File tree

3 files changed

+62
-1
lines changed

3 files changed

+62
-1
lines changed

.github/workflows/prerelease.yml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
name: Prerelease
2+
on:
3+
push:
4+
branches:
5+
- ros2
6+
tags:
7+
- '**'
8+
jobs:
9+
prerelease:
10+
name: prerelease build
11+
runs-on: ubuntu-latest
12+
strategy:
13+
fail-fast: false
14+
matrix:
15+
ROS_DISTRO: [galactic]
16+
ROS_REPO: [main]
17+
PRERELEASE: [true]
18+
env:
19+
CCACHE_DIR: ${{ github.workspace }}/.ccache
20+
BASEDIR: ${{ github.workspace }}/.work
21+
CACHE_PREFIX: ${{ matrix.ROS_DISTRO }}-${{ matrix.ROS_REPO }}
22+
steps:
23+
- uses: actions/checkout@v2
24+
# The target directory cache doesn't include the source directory because
25+
# that comes from the checkout. See "prepare target_ws for cache" task below
26+
- name: cache target_ws
27+
if: ${{ ! matrix.CCOV }}
28+
uses: pat-s/[email protected]
29+
with:
30+
path: ${{ env.BASEDIR }}/target_ws
31+
key: target_ws-${{ env.CACHE_PREFIX }}-${{ hashFiles('**/CMakeLists.txt', '**/package.xml') }}-${{ github.run_id }}
32+
restore-keys: |
33+
target_ws-${{ env.CACHE_PREFIX }}-${{ hashFiles('**/CMakeLists.txt', '**/package.xml') }}
34+
- name: cache ccache
35+
uses: pat-s/[email protected]
36+
with:
37+
path: ${{ env.CCACHE_DIR }}
38+
key: ccache-${{ env.CACHE_PREFIX }}-${{ github.sha }}-${{ github.run_id }}
39+
restore-keys: |
40+
ccache-${{ env.CACHE_PREFIX }}-${{ github.sha }}
41+
ccache-${{ env.CACHE_PREFIX }}
42+
- uses: 'ros-industrial/industrial_ci@master'
43+
env:
44+
ROS_DISTRO: ${{ matrix.ROS_DISTRO }}
45+
ROS_REPO: ${{ matrix.ROS_REPO }}
46+
PRERELEASE: ${{ matrix.PRERELEASE }}
47+
48+
- name: prepare target_ws for cache
49+
if: ${{ always() && ! matrix.CCOV }}
50+
run: |
51+
du -sh ${{ env.BASEDIR }}/target_ws
52+
sudo find ${{ env.BASEDIR }}/target_ws -wholename '*/test_results/*' -delete
53+
sudo rm -rf ${{ env.BASEDIR }}/target_ws/src
54+
du -sh ${{ env.BASEDIR }}/target_ws

CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
Changelog for package ur_description
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
2.0.0 (2022-03-17)
6+
------------------
7+
* Migrated the description to ROS2
8+
* Added support for Gazebo and Ignition
9+
* Added ROS2_control definitions
10+
* Contributors: AndyZe, Denis Stogl, Denis Štogl, Felix Exner, John Morris, Jorge Nicho, Lovro, Lukas Sackewitz, Marvin Große Besselmann, Robert Wilbrandt, Tirine, Vatan Aksoy Tezer, livanov93, urmahp
11+
512
1.2.7 (2019-11-23)
613
------------------
714

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>ur_description</name>
5-
<version>0.0.0</version>
5+
<version>2.0.0</version>
66
<description>
77
URDF description for Universal Robots
88
</description>

0 commit comments

Comments
 (0)