mirror of
https://github.com/gyptazy/ProxLB.git
synced 2026-04-06 04:41:58 +02:00
- Create release 1.1.0 content - Add documentation for release 1.1.0 - Adjust changelog Fixes: #114 Fixes: #154 Sponsored-by: credativ GmbH (https://credativ.de)
7 lines
255 B
Bash
7 lines
255 B
Bash
#!/usr/bin/env bash
|
|
VERSION="1.1.0"
|
|
|
|
sed -i "s/^__version__ = .*/__version__ = \"$VERSION\"/" "proxlb/utils/version.py"
|
|
sed -i "s/version=\"[0-9]*\.[0-9]*\.[0-9]*\"/version=\"$VERSION\"/" setup.py
|
|
echo "OK: Versions have been sucessfully set to $VERSION"
|