From 6528094f052a169d0bc333aa938b520b55b96404 Mon Sep 17 00:00:00 2001 From: Mahmoud Mazouz Date: Wed, 17 Apr 2024 16:46:56 +0200 Subject: [PATCH] feat: Automate Release (#402) * feat: Store project version in `version.txt` * fix: Add `CMakeFiles` to `.gitignore` * feat: Automate Release * fix: Remove enforce-linking-issues workflow * fix: Remove unecessary SSH passphrase/privatekey inputs * fix: Force push release branch * fix: Make build-macos need pre-build * fix: Typo in pre-build.bash path * fix: Typo in examples build path --- .github/workflows/enforce-linking-issues.yml | 10 - .github/workflows/release.yml | 280 +++++++++---------- .gitignore | 1 + CMakeLists.txt | 18 +- ci/scripts/build-linux.bash | 39 +++ ci/scripts/build-macos.bash | 28 ++ ci/scripts/bump-and-tag.bash | 25 ++ ci/scripts/pre-build.bash | 8 + docs/conf.py | 3 +- include/zenoh-pico.h | 4 +- include/zenoh-pico.h.in | 31 ++ version.txt | 1 + zenohpico.pc | 2 +- 13 files changed, 281 insertions(+), 169 deletions(-) delete mode 100644 .github/workflows/enforce-linking-issues.yml create mode 100644 ci/scripts/build-linux.bash create mode 100644 ci/scripts/build-macos.bash create mode 100644 ci/scripts/bump-and-tag.bash create mode 100644 ci/scripts/pre-build.bash create mode 100644 include/zenoh-pico.h.in create mode 100644 version.txt diff --git a/.github/workflows/enforce-linking-issues.yml b/.github/workflows/enforce-linking-issues.yml deleted file mode 100644 index ebeddd9ee..000000000 --- a/.github/workflows/enforce-linking-issues.yml +++ /dev/null @@ -1,10 +0,0 @@ -name: Enforce linking issues - -on: - pull_request_target: - types: [opened, edited, labeled] - -jobs: - main: - uses: eclipse-zenoh/zenoh/.github/workflows/enforce-linking-issues.yml@main - secrets: inherit diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f633f9d71..7599b0ba4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,188 +14,160 @@ name: Release on: - release: - types: [published] schedule: - cron: "0 0 * * 1-5" workflow_dispatch: - + inputs: + live-run: + type: boolean + description: Live-run + required: false + version: + type: string + description: Release number + required: false jobs: - preps: - name: Preparation + tag: + name: Branch, Bump & tag runs-on: ubuntu-latest + outputs: + version: ${{ steps.create-release-branch.outputs.version }} + branch: ${{ steps.create-release-branch.outputs.branch }} steps: - - name: Clone this repository + - id: create-release-branch + uses: eclipse-zenoh/ci/create-release-branch@main + with: + repo: ${{ github.repository }} + live-run: ${{ inputs.live-run || false }} + # NOTE(fuzzypixelz): When the version is undefined (e.g. on schedule + # events) we cannot use git-describe as CMake doesn't support it. + # However, we still need some placeholder version to test that the + # version can be reliably bumped. + version: ${{ inputs.version || '0.0.0' }} + github-token: ${{ secrets.BOT_TOKEN_WORKFLOW }} + + - name: Checkout this repository uses: actions/checkout@v4 + with: + ref: ${{ steps.create-release-branch.outputs.branch }} + + - name: Bump and tag project + run: bash ci/scripts/bump-and-tag.bash + env: + VERSION: ${{ steps.create-release-branch.outputs.version }} + GIT_USER_NAME: eclipse-zenoh-bot + GIT_USER_EMAIL: eclipse-zenoh-bot@users.noreply.github.com - - name: Environment setup - id: env - shell: bash - run: | - echo "GITHUB_REF=${GITHUB_REF}" - echo "GITHUB_SHA=${GITHUB_SHA:0:8}" - GIT_BRANCH=`[[ $GITHUB_REF =~ ^refs/heads/.* ]] && echo ${GITHUB_REF/refs\/heads\//} || true` - echo "GIT_BRANCH=${GIT_BRANCH}" - echo "GIT_BRANCH=${GIT_BRANCH}" >> $GITHUB_OUTPUT - GIT_TAG=`[[ $GITHUB_REF =~ ^refs/tags/.* ]] && echo ${GITHUB_REF/refs\/tags\//} || true` - echo "GIT_TAG=${GIT_TAG}" - echo "GIT_TAG=${GIT_TAG}" >> $GITHUB_OUTPUT - - ZENOH_VERSION=$(sed -n 's/^project(libzenohpico VERSION \(.*\) LANGUAGES C)/\1/p' CMakeLists.txt | head -n1) - echo "ZENOH_VERSION=${ZENOH_VERSION}" - echo "ZENOH_VERSION=${ZENOH_VERSION}" >> $GITHUB_OUTPUT - if [ -n "${GIT_TAG}" ]; then - IS_RELEASE="true" - echo "IS_RELEASE=${IS_RELEASE}" - echo "IS_RELEASE=${IS_RELEASE}" >> $GITHUB_OUTPUT - PKG_VERSION=${GIT_TAG} - elif [ -n "${GIT_BRANCH}" ]; then - PKG_VERSION=${GIT_BRANCH}-${GITHUB_SHA:0:8} - else - PKG_VERSION=${ZENOH_VERSION}-${GITHUB_SHA:0:8} - fi - echo "PKG_VERSION=${PKG_VERSION}" - echo "PKG_VERSION=${PKG_VERSION}" >> $GITHUB_OUTPUT - - CROSSBUILD_TARGETS=$(sed -n 's/^CROSSBUILD_TARGETS=\(.*\)/\1/p' GNUmakefile | head -n1) - echo "CROSSBUILD_TARGETS=$CROSSBUILD_TARGETS" - TARGET_MATRIX="{\"target\": [\"${CROSSBUILD_TARGETS// /\",\"}\"]}" - echo "TARGET_MATRIX=$TARGET_MATRIX" - echo "TARGET_MATRIX=$TARGET_MATRIX" >> $GITHUB_OUTPUT + pre-build: + name: Pre-Build + needs: tag + runs-on: ubuntu-latest outputs: - GIT_BRANCH: ${{ steps.env.outputs.GIT_BRANCH }} - GIT_TAG: ${{ steps.env.outputs.GIT_TAG }} - IS_RELEASE: ${{ steps.env.outputs.IS_RELEASE }} - ZENOH_VERSION: ${{ steps.env.outputs.ZENOH_VERSION }} - PKG_VERSION: ${{ steps.env.outputs.PKG_VERSION }} - TARGET_MATRIX: ${{ steps.env.outputs.TARGET_MATRIX }} - - macos-build: - name: Build on macos-x64 - needs: preps + build-linux-matrix: ${{ steps.pre-build.outputs.build-linux-matrix }} + steps: + - name: Clone this repository + uses: actions/checkout@v4 + with: + ref: ${{ needs.tag.outputs.branch }} + + - id: pre-build + run: bash ci/scripts/pre-build.bash + + build-macos: + name: Build for macOS (x64) + needs: [tag, pre-build] runs-on: macos-latest steps: - name: Clone this repository uses: actions/checkout@v4 + with: + ref: ${{ needs.tag.outputs.branch }} - - name: MacOS build - run: make + - id: build-macos + run: bash ci/scripts/build-macos.bash env: - BUILD_TYPE: RELEASE - - - name: Packaging - id: package - shell: bash - run: | - LIB_PKG_NAME=${PWD}/zenoh-pico-${{ needs.preps.outputs.PKG_VERSION }}-macos-x64.zip - echo "Packaging ${LIB_PKG_NAME}:" - cd build && zip -r ${LIB_PKG_NAME} lib && cd - - zip -r ${LIB_PKG_NAME} include - echo "LIB_PKG_NAME=${LIB_PKG_NAME}" >> $GITHUB_OUTPUT - - EXP_PKG_NAME=${PWD}/zenoh-pico-${{ needs.preps.outputs.PKG_VERSION }}-macos-x64-examples.zip - echo "Packaging ${EXP_PKG_NAME}:" - cd build/examples && zip ${EXP_PKG_NAME} * && cd - - echo "EXP_PKG_NAME=${EXP_PKG_NAME}" >> $GITHUB_OUTPUT - - - name: "Upload x86_64 macos package" - uses: actions/upload-artifact@v3 + REPO: ${{ github.repository }} + VERSION: ${{ needs.tag.outputs.version }} + + - name: Upload macOS library archive + uses: actions/upload-artifact@v4 with: - name: macos-x64 - path: | - ${{ steps.package.outputs.LIB_PKG_NAME }} - ${{ steps.package.outputs.EXP_PKG_NAME }} + name: ${{ steps.build-macos.outputs.archive-lib }} + path: ${{ steps.build-macos.outputs.archive-lib }} - linux-builds: + - name: Upload macOS examples archive + uses: actions/upload-artifact@v4 + with: + name: ${{ steps.build-macos.outputs.archive-examples }} + path: ${{ steps.build-macos.outputs.archive-examples }} + + build-linux: name: Crossbuild for ${{ matrix.target }} - needs: preps + needs: [tag, pre-build] runs-on: ubuntu-latest strategy: fail-fast: false - matrix: ${{fromJson(needs.preps.outputs.TARGET_MATRIX)}} + matrix: ${{ fromJson(needs.pre-build.outputs.build-linux-matrix) }} steps: - name: Clone this repository uses: actions/checkout@v4 + with: + ref: ${{ needs.tag.outputs.branch }} - - name: make for ${{ matrix.target }} + - id: build-linux + run: bash ci/scripts/build-linux.bash env: - BUILD_TYPE: RELEASE - run: make ${{ matrix.target }} - - - name: Packaging - id: package - shell: bash - run: | - TARGET=${{ matrix.target }} - LIB_PKG_NAME=${PWD}/zenoh-pico-${{ needs.preps.outputs.PKG_VERSION }}-${TARGET}.zip - DEB_PKG_NAME=${PWD}/zenoh-pico-${{ needs.preps.outputs.PKG_VERSION }}-${TARGET}-deb-pkgs.zip - RPM_PKG_NAME=${PWD}/zenoh-pico-${{ needs.preps.outputs.PKG_VERSION }}-${TARGET}-rpm-pkgs.zip - EXP_PKG_NAME=${PWD}/zenoh-pico-${{ needs.preps.outputs.PKG_VERSION }}-${TARGET}-examples.zip - - echo "Packaging ${LIB_PKG_NAME}:" - cd crossbuilds/${TARGET} && zip -r ${LIB_PKG_NAME} lib && cd - - zip -r ${LIB_PKG_NAME} include - echo "LIB_PKG_NAME=${LIB_PKG_NAME}" >> $GITHUB_OUTPUT - - cd crossbuilds/${TARGET}/packages - echo "Packaging ${DEB_PKG_NAME}:" - zip ${DEB_PKG_NAME} *.deb - echo "DEB_PKG_NAME=${DEB_PKG_NAME}" >> $GITHUB_OUTPUT - echo "Packaging ${RPM_PKG_NAME}:" - zip ${RPM_PKG_NAME} *.rpm - echo "RPM_PKG_NAME=${RPM_PKG_NAME}" >> $GITHUB_OUTPUT - cd - - - echo "Packaging ${EXP_PKG_NAME}:" - cd crossbuilds/${TARGET}/examples && zip ${EXP_PKG_NAME} * && cd - - echo "EXP_PKG_NAME=${EXP_PKG_NAME}" >> $GITHUB_OUTPUT - - - name: "Upload packages" - uses: actions/upload-artifact@v3 + REPO: ${{ github.repository }} + VERSION: ${{ needs.tag.outputs.version }} + TARGET: ${{ matrix.target }} + + - name: Upload Linux library archive for ${{ matrix.target }} + uses: actions/upload-artifact@v4 with: - name: ${{ matrix.target }} - path: | - ${{ steps.package.outputs.LIB_PKG_NAME }} - ${{ steps.package.outputs.DEB_PKG_NAME }} - ${{ steps.package.outputs.RPM_PKG_NAME }} - ${{ steps.package.outputs.EXP_PKG_NAME }} - - publication: - name: Publish the release - if: needs.preps.outputs.IS_RELEASE == 'true' - needs: [preps, macos-build, linux-builds] - runs-on: ubuntu-latest - steps: - - name: Download result of previous builds - uses: actions/download-artifact@v3 + name: ${{ steps.build-linux.outputs.archive-lib }} + path: ${{ steps.build-linux.outputs.archive-lib }} + + - name: Upload Linux examples archive for ${{ matrix.target }} + uses: actions/upload-artifact@v4 with: - path: ARTIFACTS + name: ${{ steps.build-linux.outputs.archive-examples }} + path: ${{ steps.build-linux.outputs.archive-examples }} - - name: Publish as github release - uses: softprops/action-gh-release@v1 + - name: Upload Linux RPM archive for ${{ matrix.target }} + uses: actions/upload-artifact@v4 with: - files: ARTIFACTS/*/*.* + name: ${{ steps.build-linux.outputs.archive-rpm }} + path: ${{ steps.build-linux.outputs.archive-rpm }} - - name: Publish to download.eclipse.org/zenoh - env: - SSH_TARGET: genie.zenoh@projects-storage.eclipse.org - ECLIPSE_BASE_DIR: /home/data/httpd/download.eclipse.org/zenoh/zenoh-pico - shell: bash - run: | - echo "--- setup ssh-agent" - eval "$(ssh-agent -s)" - echo 'echo "${{ secrets.SSH_PASSPHRASE }}"' > ~/.ssh_askpass && chmod +x ~/.ssh_askpass - echo "${{ secrets.SSH_PRIVATE_KEY }}" | tr -d '\r' | DISPLAY=NONE SSH_ASKPASS=~/.ssh_askpass ssh-add - > /dev/null 2>&1 - rm -f ~/.ssh_askpass - echo "--- test ssh:" - ssh -o "StrictHostKeyChecking=no" ${SSH_TARGET} ls -al - echo "---- list artifacts to upload:" - ls -R ARTIFACTS || true - DOWNLOAD_DIR=${ECLIPSE_BASE_DIR}/${{ needs.preps.outputs.PKG_VERSION }} - echo "---- copy artifacts into ${DOWNLOAD_DIR}" - ssh -o "StrictHostKeyChecking=no" ${SSH_TARGET} mkdir -p ${DOWNLOAD_DIR} - cd ARTIFACTS - sha256sum */* > sha256sums.txt - scp -o "StrictHostKeyChecking=no" -r * ${SSH_TARGET}:${DOWNLOAD_DIR}/ - echo "---- cleanup identity" - ssh-add -D + - name: Upload Linux DEB archive for ${{ matrix.target }} + uses: actions/upload-artifact@v4 + with: + name: ${{ steps.build-linux.outputs.archive-deb }} + path: ${{ steps.build-linux.outputs.archive-deb }} + + eclipse: + needs: [tag, build-macos, build-linux] + runs-on: ubuntu-latest + steps: + - uses: eclipse-zenoh/ci/publish-crates-eclipse@main + with: + live-run: ${{ inputs.live-run || false }} + version: ${{ needs.tag.outputs.version }} + ssh-host: genie.zenoh@projects-storage.eclipse.org + ssh-host-path: /home/data/httpd/download.eclipse.org/zenoh/zenoh-pico + ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} + ssh-passphrase: ${{ secrets.SSH_PASSPHRASE }} + archive-patterns: '.*\.zip' + + github: + needs: [tag, build-macos, build-linux] + runs-on: ubuntu-latest + steps: + - uses: eclipse-zenoh/ci/publish-crates-github@main + with: + repo: ${{ github.repository }} + live-run: ${{ inputs.live-run || false }} + version: ${{ needs.tag.outputs.version }} + branch: ${{ needs.tag.outputs.branch }} + github-token: ${{ secrets.BOT_TOKEN_WORKFLOW }} + archive-patterns: '.*\.zip' diff --git a/.gitignore b/.gitignore index ae356975d..46661a4eb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ # CMake build crossbuilds +CMakeFiles # vscode .vscode diff --git a/CMakeLists.txt b/CMakeLists.txt index 46c7a6a37..37c51f9de 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,7 +13,21 @@ # cmake_minimum_required(VERSION 3.13) -project(zenohpico VERSION 0.11.0.0 LANGUAGES C) +file(READ ${CMAKE_CURRENT_SOURCE_DIR}/version.txt version) + +project(zenohpico VERSION ${version} LANGUAGES C) + +# Configure header file to define the project version +set(ZENOH_PICO ${PROJECT_VERSION}) +set(ZENOH_PICO_MAJOR ${PROJECT_VERSION_MAJOR}) +set(ZENOH_PICO_MINOR ${PROJECT_VERSION_MINOR}) +set(ZENOH_PICO_PATCH ${PROJECT_VERSION_PATCH}) +set(ZENOH_PICO_TWEAK ${PROJECT_VERSION_TWEAK}) +configure_file( + ${CMAKE_CURRENT_SOURCE_DIR}/include/zenoh-pico.h.in + ${CMAKE_CURRENT_SOURCE_DIR}/include/zenoh-pico.h + @ONLY +) include(CMakePackageConfigHelpers) include(GNUInstallDirs) @@ -473,4 +487,4 @@ if(PACKAGING) include(CPack) endif() -endif() \ No newline at end of file +endif() diff --git a/ci/scripts/build-linux.bash b/ci/scripts/build-linux.bash new file mode 100644 index 000000000..00b9f97df --- /dev/null +++ b/ci/scripts/build-linux.bash @@ -0,0 +1,39 @@ +#!/usr/bin/env bash + +set -xeo pipefail + +# Repository +readonly repo=${REPO:?input REPO is required} +# Release number +readonly version=${VERSION:?input TARGET is required} +# Build target +readonly target=${TARGET:?input TARGET is required} + +BUILD_TYPE=RELEASE make "$target" + +readonly out=$GITHUB_WORKSPACE +readonly repo_name=${repo#*/} +readonly archive_lib=$out/$repo_name-$version-$target.zip +readonly archive_deb=$out/$repo_name-$version-$target-deb-pkgs.zip +readonly archive_rpm=$out/$repo_name-$version-$target-rpm-pkgs.zip +readonly archive_examples=$out/$repo_name-$version-$target-examples.zip + +cd crossbuilds/"$target" +zip -r "$archive_lib" lib +cd - +zip -r "$archive_lib" include + +cd crossbuilds/"$target"/packages +zip "$archive_deb" ./*.deb +zip "$archive_rpm" ./*.rpm +cd - + +cd crossbuilds/"$target"/examples +zip "$archive_examples" ./* +cd - + +{ echo "archive-lib=$(basename "$archive_lib")"; + echo "archive-deb=$(basename "$archive_deb")"; + echo "archive-rpm=$(basename "$archive_rpm")"; + echo "archive-examples=$(basename "$archive_examples")"; +} >> "$GITHUB_OUTPUT" diff --git a/ci/scripts/build-macos.bash b/ci/scripts/build-macos.bash new file mode 100644 index 000000000..b04714283 --- /dev/null +++ b/ci/scripts/build-macos.bash @@ -0,0 +1,28 @@ +#!/usr/bin/env bash + +set -xeo pipefail + +# Repository +readonly repo=${REPO:?input REPO is required} +# Release number +readonly version=${VERSION:?input VERSION is required} + +BUILD_TYPE=RELEASE make + +readonly out=$GITHUB_WORKSPACE +readonly repo_name=${repo#*/} +readonly archive_lib=$out/$repo_name-$version-macos-x64.zip +readonly archive_examples=$out/$repo_name-$version-macos-x64-examples.zip + +cd build +zip -r "$archive_lib" lib +cd .. +zip -r "$archive_lib" include + +cd build/examples +zip "$archive_examples" ./* +cd .. + +{ echo "archive-lib=$(basename "$archive_lib")"; + echo "archive-examples=$(basename "$archive_examples")"; +} >> "$GITHUB_OUTPUT" diff --git a/ci/scripts/bump-and-tag.bash b/ci/scripts/bump-and-tag.bash new file mode 100644 index 000000000..58883d627 --- /dev/null +++ b/ci/scripts/bump-and-tag.bash @@ -0,0 +1,25 @@ +#!/usr/bin/env bash + +set -xeo pipefail + +# Release number +readonly version=${VERSION:-input VERSION is required} +# Git actor name +readonly git_user_name=${GIT_USER_NAME:?input GIT_USER_NAME is required} +# Git actor email +readonly git_user_email=${GIT_USER_EMAIL:?input GIT_USER_EMAIL is required} + +export GIT_AUTHOR_NAME=$git_user_name +export GIT_AUTHOR_EMAIL=$git_user_email +export GIT_COMMITTER_NAME=$git_user_name +export GIT_COMMITTER_EMAIL=$git_user_email + +# Bump CMake project version +printf '%s' "$version" > version.txt + +git commit version.txt -m "chore: Bump version to $version" +git tag --force "$version" -m "v$version" +git log -10 +git show-ref --tags +git push --force origin +git push --force origin "$version" diff --git a/ci/scripts/pre-build.bash b/ci/scripts/pre-build.bash new file mode 100644 index 000000000..c541076a5 --- /dev/null +++ b/ci/scripts/pre-build.bash @@ -0,0 +1,8 @@ +#!/usr/bin/env bash + +set -xeo pipefail + +# Extract cross-compilation targets from the Makefile +crossbuild_targets=$(sed -n 's/^CROSSBUILD_TARGETS=\(.*\)/\1/p' GNUmakefile | head -n1) +target_matrix="{\"target\": [\"${crossbuild_targets// /\",\"}\"]}" +echo "build-linux-matrix=$target_matrix" >> "$GITHUB_OUTPUT" diff --git a/docs/conf.py b/docs/conf.py index 3743f81cd..471dda880 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -21,7 +21,8 @@ project = 'zenoh-pico' copyright = '2017, 2022 ZettaScale Technology Inc' author = 'ZettaScale Zenoh team' -release = '0.11.0.0' +with open("../version.txt", "rt") as f: + release = f.read() # -- General configuration --------------------------------------------------- master_doc = 'index' diff --git a/include/zenoh-pico.h b/include/zenoh-pico.h index f1ea60301..5cf6625eb 100644 --- a/include/zenoh-pico.h +++ b/include/zenoh-pico.h @@ -12,12 +12,14 @@ // ZettaScale Zenoh Team, // +// ⚠️ This file is auto-generated from include/zenoh-pico.h.in + #ifndef ZENOH_PICO_H #define ZENOH_PICO_H #define ZENOH_PICO "0.11.0.0" #define ZENOH_PICO_MAJOR 0 -#define ZENOH_PICO_MINOR 10 +#define ZENOH_PICO_MINOR 11 #define ZENOH_PICO_PATCH 0 #define ZENOH_PICO_TWEAK 0 diff --git a/include/zenoh-pico.h.in b/include/zenoh-pico.h.in new file mode 100644 index 000000000..736ab3ff2 --- /dev/null +++ b/include/zenoh-pico.h.in @@ -0,0 +1,31 @@ +// +// Copyright (c) 2022 ZettaScale Technology +// +// This program and the accompanying materials are made available under the +// terms of the Eclipse Public License 2.0 which is available at +// http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0 +// which is available at https://www.apache.org/licenses/LICENSE-2.0. +// +// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 +// +// Contributors: +// ZettaScale Zenoh Team, +// + +// ⚠️ This file is auto-generated from include/zenoh-pico.h.in + +#ifndef ZENOH_PICO_H +#define ZENOH_PICO_H + +#define ZENOH_PICO "@ZENOH_PICO@" +#define ZENOH_PICO_MAJOR @ZENOH_PICO_MAJOR@ +#define ZENOH_PICO_MINOR @ZENOH_PICO_MINOR@ +#define ZENOH_PICO_PATCH @ZENOH_PICO_PATCH@ +#define ZENOH_PICO_TWEAK @ZENOH_PICO_TWEAK@ + +#include "zenoh-pico/api/constants.h" +#include "zenoh-pico/api/macros.h" +#include "zenoh-pico/api/primitives.h" +#include "zenoh-pico/api/types.h" + +#endif /* ZENOH_PICO_H */ diff --git a/version.txt b/version.txt new file mode 100644 index 000000000..6e5d683f0 --- /dev/null +++ b/version.txt @@ -0,0 +1 @@ +0.11.0.0 \ No newline at end of file diff --git a/zenohpico.pc b/zenohpico.pc index 07129feee..7433e1cc5 100644 --- a/zenohpico.pc +++ b/zenohpico.pc @@ -3,6 +3,6 @@ prefix=/usr/local Name: zenohpico Description: URL: -Version: 0.11.20240327dev +Version: 0.11.20240411dev Cflags: -I${prefix}/include Libs: -L${prefix}/lib -lzenohpico