Bump version to 0.9.35
This commit is contained in:
parent
58db537093
commit
772807deb3
|
@ -55,6 +55,14 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
#### v0.9.35
|
||||||
|
|
||||||
|
* [Node Daemon] Fixes several bugs and crashes in node daemon
|
||||||
|
* [General] Updates linting rules for newer Flake8 linter
|
||||||
|
* [Daemons/CLI client] Adds VM network and disk hot attach/detach support; NOTE: Changes the default behaviour of `pvc vm network add`/`remove` and `pvc vm volume add`/`remove`
|
||||||
|
* [API Daemon] Adds checks for pool size when resizing volumes
|
||||||
|
* [API Daemon] Adds checks for RAM and vCPU sizes when defining or modifying VMs
|
||||||
|
|
||||||
#### v0.9.34
|
#### v0.9.34
|
||||||
|
|
||||||
* [Provisioner] Adds support for filesystem arguments containing =
|
* [Provisioner] Adds support for filesystem arguments containing =
|
||||||
|
|
|
@ -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.34'
|
version = '0.9.35'
|
||||||
|
|
||||||
# API version
|
# API version
|
||||||
API_VERSION = 1.0
|
API_VERSION = 1.0
|
||||||
|
|
|
@ -2,7 +2,7 @@ from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='pvc',
|
name='pvc',
|
||||||
version='0.9.34',
|
version='0.9.35',
|
||||||
packages=['pvc', 'pvc.cli_lib'],
|
packages=['pvc', 'pvc.cli_lib'],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'Click',
|
'Click',
|
||||||
|
|
|
@ -1,3 +1,13 @@
|
||||||
|
pvc (0.9.35-0) unstable; urgency=high
|
||||||
|
|
||||||
|
* [Node Daemon] Fixes several bugs and crashes in node daemon
|
||||||
|
* [General] Updates linting rules for newer Flake8 linter
|
||||||
|
* [Daemons/CLI client] Adds VM network and disk hot attach/detach support; NOTE: Changes the default behaviour of `pvc vm network add`/`remove` and `pvc vm volume add`/`remove`
|
||||||
|
* [API Daemon] Adds checks for pool size when resizing volumes
|
||||||
|
* [API Daemon] Adds checks for RAM and vCPU sizes when defining or modifying VMs
|
||||||
|
|
||||||
|
-- Joshua M. Boniface <joshua@boniface.me> Mon, 13 Sep 2021 02:20:46 -0400
|
||||||
|
|
||||||
pvc (0.9.34-0) unstable; urgency=high
|
pvc (0.9.34-0) unstable; urgency=high
|
||||||
|
|
||||||
* [Provisioner] Adds support for filesystem arguments containing =
|
* [Provisioner] Adds support for filesystem arguments containing =
|
||||||
|
|
|
@ -55,6 +55,14 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
#### v0.9.35
|
||||||
|
|
||||||
|
* [Node Daemon] Fixes several bugs and crashes in node daemon
|
||||||
|
* [General] Updates linting rules for newer Flake8 linter
|
||||||
|
* [Daemons/CLI client] Adds VM network and disk hot attach/detach support; NOTE: Changes the default behaviour of `pvc vm network add`/`remove` and `pvc vm volume add`/`remove`
|
||||||
|
* [API Daemon] Adds checks for pool size when resizing volumes
|
||||||
|
* [API Daemon] Adds checks for RAM and vCPU sizes when defining or modifying VMs
|
||||||
|
|
||||||
#### v0.9.34
|
#### v0.9.34
|
||||||
|
|
||||||
* [Provisioner] Adds support for filesystem arguments containing =
|
* [Provisioner] Adds support for filesystem arguments containing =
|
||||||
|
|
|
@ -48,7 +48,7 @@ import re
|
||||||
import json
|
import json
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = '0.9.34'
|
version = '0.9.35'
|
||||||
|
|
||||||
|
|
||||||
##########################################################
|
##########################################################
|
||||||
|
|
Loading…
Reference in New Issue