#!/bin/bash # # version-bump.sh — bumps the plugin version entity in plugin/podman.plg # without performing a full release (useful for pre-release testing builds). # # Usage (planned): scripts/version-bump.sh # # STATUS: placeholder skeleton, not yet functional. set -eu NEW_VERSION="${1:-}" if [ -z "$NEW_VERSION" ]; then echo "usage: $0 " >&2 exit 1 fi # TODO: update in plugin/podman.plg echo "TODO: implement version-bump.sh for version $NEW_VERSION" exit 1