24 lines
298 B
Bash
Executable File
24 lines
298 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
VERSION=$1
|
|
|
|
cd bovine
|
|
poetry version $VERSION
|
|
|
|
cd ../bovine_store
|
|
poetry version $VERSION
|
|
|
|
cd ../bovine_process
|
|
poetry version $VERSION
|
|
|
|
cd ../bovine_pubsub
|
|
poetry version $VERSION
|
|
|
|
cd ../bovine_herd
|
|
poetry version $VERSION
|
|
|
|
cd ../bovine_tool
|
|
poetry version $VERSION
|