Bump version to 0.6
This commit is contained in:
parent
97a800b065
commit
74228eb063
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
ver="0.5"
|
ver="0.6"
|
||||||
git pull
|
git pull
|
||||||
rm ../pvc_*
|
rm ../pvc_*
|
||||||
dh_make -p pvc_${ver} --createorig --single --yes
|
dh_make -p pvc_${ver} --createorig --single --yes
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
pvc (0.6-0) unstable; urgency=medium
|
||||||
|
|
||||||
|
* Numerous improvements, implementation of provisioner and API client
|
||||||
|
|
||||||
|
-- Joshua Boniface <joshua@boniface.me> Sat, 08 Feb 2019 18:26:58 -0500
|
||||||
|
|
||||||
pvc (0.5-0) unstable; urgency=medium
|
pvc (0.5-0) unstable; urgency=medium
|
||||||
|
|
||||||
* First public release
|
* First public release
|
||||||
|
|
|
@ -24,6 +24,10 @@ To get started with PVC, read the [Cluster Architecture document](/architecture/
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
#### v0.6
|
||||||
|
|
||||||
|
Numerous improvements and bugfixes, full implementation of the provisioner, full implementation of the API CLI client (versus direct CLI client). This release is suitable for general use and is beta-quality software.
|
||||||
|
|
||||||
#### v0.5
|
#### v0.5
|
||||||
|
|
||||||
First public release; fully implements the VM, network, and storage managers, the HTTP API, and the pvc-ansible framework for deploying and bootstrapping a cluster. This release is suitable for general use, though it is still alpha-quality software and should be expected to change significantly until 1.0 is released.
|
First public release; fully implements the VM, network, and storage managers, the HTTP API, and the pvc-ansible framework for deploying and bootstrapping a cluster. This release is suitable for general use, though it is still alpha-quality software and should be expected to change significantly until 1.0 is released.
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
# Version string for startup output
|
# Version string for startup output
|
||||||
version = '0.5'
|
version = '0.6'
|
||||||
|
|
||||||
import kazoo.client
|
import kazoo.client
|
||||||
import libvirt
|
import libvirt
|
||||||
|
|
Loading…
Reference in New Issue