Skip to content

Commit

Permalink
Bump version to 0.9.56
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuaboniface committed Oct 27, 2022
1 parent 6c58d52 commit c3bc55e
Show file tree
Hide file tree
Showing 6 changed files with 25 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.55
0.9.56
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
## PVC Changelog

###### [v0.9.56](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.56)

**Breaking Change**: Existing provisioner scripts are no longer valid; new example scripts are provided.
**Breaking Change**: OVA profiles now require an `ova` or `default_ova` provisioner script (use example) to function.

* [API/Provisioner] Fundamentally revamps the provisioner script framework to provide more extensibility
* [API/Provisioner] Adds example provisioner scripts for noop, ova, debootstrap, rinse, and pfsense
* [API/Provisioner] Enforces the use of the ova provisioner script during new OVA uploads; existing uploads will not work
* [Documentation] Updates the documentation around provisioner scripts and OVAs to reflect the above changes
* [Node] Adds a new pvcautoready.service oneshot unit to replicate the on-boot-ready functionality of old pvc-flush.service unit

###### [v0.9.55](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.55)

* Fixes a problem with the literal eval handler in the provisioner (again)
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 @@ -27,7 +27,7 @@
from distutils.util import strtobool as dustrtobool

# Daemon version
version = "0.9.55"
version = "0.9.56"

# 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.55",
version="0.9.56",
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.56-0) unstable; urgency=high

* [API/Provisioner] Fundamentally revamps the provisioner script framework to provide more extensibility (BREAKING CHANGE)
* [API/Provisioner] Adds example provisioner scripts for noop, ova, debootstrap, rinse, and pfsense (BREAKING CHANGE)
* [API/Provisioner] Enforces the use of the ova provisioner script during new OVA uploads; existing uploads will not work (BREAKING CHANGE)
* [Documentation] Updates the documentation around provisioner scripts and OVAs to reflect the above changes
* [Node] Adds a new pvcautoready.service oneshot unit to replicate the on-boot-ready functionality of old pvc-flush.service unit

-- Joshua M. Boniface <[email protected]> Thu, 27 Oct 2022 14:19:18 -0400

pvc (0.9.55-0) unstable; urgency=high

* Fixes a problem with the literal eval handler in the provisioner (again)
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.55"
version = "0.9.56"


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

0 comments on commit c3bc55e

Please sign in to comment.