Skip to content

Commit

Permalink
Bump version to 0.9.35
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuaboniface committed Sep 13, 2021
1 parent 58db537 commit 772807d
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.34
0.9.35
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,14 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl

## 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

* [Provisioner] Adds support for filesystem arguments containing =
Expand Down
2 changes: 1 addition & 1 deletion api-daemon/pvcapid/Daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from distutils.util import strtobool as dustrtobool

# Daemon version
version = '0.9.34'
version = '0.9.35'

# API version
API_VERSION = 1.0
Expand Down
2 changes: 1 addition & 1 deletion client-cli/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='pvc',
version='0.9.34',
version='0.9.35',
packages=['pvc', 'pvc.cli_lib'],
install_requires=[
'Click',
Expand Down
10 changes: 10 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -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 <[email protected]> Mon, 13 Sep 2021 02:20:46 -0400

pvc (0.9.34-0) unstable; urgency=high

* [Provisioner] Adds support for filesystem arguments containing =
Expand Down
8 changes: 8 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,14 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl

## 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

* [Provisioner] Adds support for filesystem arguments containing =
Expand Down
2 changes: 1 addition & 1 deletion node-daemon/pvcnoded/Daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
import json

# Daemon version
version = '0.9.34'
version = '0.9.35'


##########################################################
Expand Down

0 comments on commit 772807d

Please sign in to comment.