Compare commits

...

2 Commits

Author SHA1 Message Date
Joshua Boniface 6febcfdd97 Bump version to 0.9.43 2021-11-08 02:29:17 -05:00
Joshua Boniface 11d8ce70cd Fix sed commands after Black formatting change 2021-11-08 02:29:05 -05:00
7 changed files with 36 additions and 8 deletions

View File

@ -1 +1 @@
0.9.42 0.9.43

View File

@ -1,5 +1,18 @@
## PVC Changelog ## PVC Changelog
###### [v0.9.43](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.43)
* [Packaging] Fixes a bad test in postinst
* [CLI] Adds support for removing VM interfaces by MAC address
* [CLI] Modifies the default restart + live behaviour to prefer the explicit restart
* [CLI] Adds support for adding additional VM interfaces in the same network
* [CLI] Various ordering and message fixes
* [Node Daemon] Adds additional delays and retries to fencing actions
* [All] Adds Black formatting for Python code and various script/hook cleanups
* [CLI/API] Adds automatic shutdown or stop when disabling a VM
* [CLI] Adds support for forcing colourized output
* [Docs] Remove obsolete Ansible and Testing manuals
###### [v0.9.42](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.42) ###### [v0.9.42](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.42)
* [Documentation] Reworks and updates various documentation sections * [Documentation] Reworks and updates various documentation sections

View File

@ -25,7 +25,7 @@ import yaml
from distutils.util import strtobool as dustrtobool from distutils.util import strtobool as dustrtobool
# Daemon version # Daemon version
version = "0.9.42" version = "0.9.43"
# API version # API version
API_VERSION = 1.0 API_VERSION = 1.0

View File

@ -19,9 +19,9 @@ $EDITOR ${changelog_file}
changelog="$( cat ${changelog_file} | grep -v '^#' | sed 's/^*/ */' )" changelog="$( cat ${changelog_file} | grep -v '^#' | sed 's/^*/ */' )"
rm ${changelog_file} rm ${changelog_file}
sed -i "s,version = '${current_version}',version = '${new_version}'," node-daemon/pvcnoded/Daemon.py sed -i "s,version = \"${current_version}\",version = \"${new_version}\"," node-daemon/pvcnoded/Daemon.py
sed -i "s,version = '${current_version}',version = '${new_version}'," api-daemon/pvcapid/Daemon.py sed -i "s,version = \"${current_version}\",version = \"${new_version}\"," api-daemon/pvcapid/Daemon.py
sed -i "s,version='${current_version}',version='${new_version}'," client-cli/setup.py sed -i "s,version=\"${current_version}\",version=\"${new_version}\"," client-cli/setup.py
echo ${new_version} > .version echo ${new_version} > .version
changelog_tmpdir=$( mktemp -d ) changelog_tmpdir=$( mktemp -d )
@ -52,7 +52,7 @@ git commit -v
popd &>/dev/null popd &>/dev/null
echo echo
echo "GitLab release message:" echo "Release message:"
echo echo
echo "# Parallel Virtual Cluster version ${new_version}" echo "# Parallel Virtual Cluster version ${new_version}"
echo echo

View File

@ -2,7 +2,7 @@ from setuptools import setup
setup( setup(
name="pvc", name="pvc",
version="0.9.42", version="0.9.43",
packages=["pvc", "pvc.cli_lib"], packages=["pvc", "pvc.cli_lib"],
install_requires=[ install_requires=[
"Click", "Click",

15
debian/changelog vendored
View File

@ -1,3 +1,18 @@
pvc (0.9.43-0) unstable; urgency=high
* [Packaging] Fixes a bad test in postinst
* [CLI] Adds support for removing VM interfaces by MAC address
* [CLI] Modifies the default restart + live behaviour to prefer the explicit restart
* [CLI] Adds support for adding additional VM interfaces in the same network
* [CLI] Various ordering and message fixes
* [Node Daemon] Adds additional delays and retries to fencing actions
* [All] Adds Black formatting for Python code and various script/hook cleanups
* [CLI/API] Adds automatic shutdown or stop when disabling a VM
* [CLI] Adds support for forcing colourized output
* [Docs] Remove obsolete Ansible and Testing manuals
-- Joshua M. Boniface <joshua@boniface.me> Mon, 08 Nov 2021 02:27:38 -0500
pvc (0.9.42-0) unstable; urgency=high pvc (0.9.42-0) unstable; urgency=high
* [Documentation] Reworks and updates various documentation sections * [Documentation] Reworks and updates various documentation sections

View File

@ -48,7 +48,7 @@ import re
import json import json
# Daemon version # Daemon version
version = "0.9.42" version = "0.9.43"
########################################################## ##########################################################