Bump version to 0.9.56
This commit is contained in:
parent
6c58d52fa1
commit
c3bc55eff8
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -1,5 +1,16 @@
|
||||||
## PVC Changelog
|
## 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)
|
###### [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)
|
* Fixes a problem with the literal eval handler in the provisioner (again)
|
||||||
|
|
|
@ -27,7 +27,7 @@ from ssl import SSLContext, TLSVersion
|
||||||
from distutils.util import strtobool as dustrtobool
|
from distutils.util import strtobool as dustrtobool
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = "0.9.55"
|
version = "0.9.56"
|
||||||
|
|
||||||
# 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.55",
|
version="0.9.56",
|
||||||
packages=["pvc", "pvc.cli_lib"],
|
packages=["pvc", "pvc.cli_lib"],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"Click",
|
"Click",
|
||||||
|
|
|
@ -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 <joshua@boniface.me> Thu, 27 Oct 2022 14:19:18 -0400
|
||||||
|
|
||||||
pvc (0.9.55-0) unstable; urgency=high
|
pvc (0.9.55-0) unstable; urgency=high
|
||||||
|
|
||||||
* Fixes a problem with the literal eval handler in the provisioner (again)
|
* Fixes a problem with the literal eval handler in the provisioner (again)
|
||||||
|
|
|
@ -48,7 +48,7 @@ import re
|
||||||
import json
|
import json
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = "0.9.55"
|
version = "0.9.56"
|
||||||
|
|
||||||
|
|
||||||
##########################################################
|
##########################################################
|
||||||
|
|
Loading…
Reference in New Issue