Bump version to 0.9.21
This commit is contained in:
parent
64feabf7c0
commit
fe0a1d582a
17
README.md
17
README.md
|
@ -42,6 +42,23 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r
|
|||
|
||||
## Changelog
|
||||
|
||||
#### v0.9.21
|
||||
|
||||
* [API Daemon] Ensures VMs stop before removing them
|
||||
* [Node Daemon] Fixes a bug with VM shutdowns not timing out
|
||||
* [Documentation] Adds information about georedundancy caveats
|
||||
* [All] Adds support for SR-IOV NICs (hostdev and macvtap) and surrounding documentation
|
||||
* [Node Daemon] Fixes a bug where shutdown aborted migrations unexpectedly
|
||||
* [Node Daemon] Fixes a bug where the migration method was not updated realtime
|
||||
* [Node Daemon] Adjusts the Patroni commands to remove reference to Zookeeper path
|
||||
* [CLI Client] Adjusts several help messages and fixes some typos
|
||||
* [CLI Client] Converts the CLI client to a proper Python module
|
||||
* [API Daemon] Improves VM list performance
|
||||
* [API Daemon] Adjusts VM list matching critera (only matches against the UUID if it's a full UUID)
|
||||
* [API Worker] Fixes incompatibility between Deb 10 and 11 in launching Celery worker
|
||||
* [API Daemon] Corrects several bugs with initialization command
|
||||
* [Documentation] Adds a shiny new logo and revamps introduction text
|
||||
|
||||
#### v0.9.20
|
||||
|
||||
* [Daemons] Implemented a Zookeeper schema handler and version 0 schema
|
||||
|
|
|
@ -25,7 +25,7 @@ import yaml
|
|||
from distutils.util import strtobool as dustrtobool
|
||||
|
||||
# Daemon version
|
||||
version = '0.9.20'
|
||||
version = '0.9.21'
|
||||
|
||||
# API version
|
||||
API_VERSION = 1.0
|
||||
|
|
|
@ -2,7 +2,7 @@ from setuptools import setup
|
|||
|
||||
setup(
|
||||
name='pvc',
|
||||
version='0.9.20',
|
||||
version='0.9.21',
|
||||
packages=['pvc', 'pvc.cli_lib'],
|
||||
install_requires=[
|
||||
'Click',
|
||||
|
|
|
@ -1,3 +1,22 @@
|
|||
pvc (0.9.21-0) unstable; urgency=high
|
||||
|
||||
* [API Daemon] Ensures VMs stop before removing them
|
||||
* [Node Daemon] Fixes a bug with VM shutdowns not timing out
|
||||
* [Documentation] Adds information about georedundancy caveats
|
||||
* [All] Adds support for SR-IOV NICs (hostdev and macvtap) and surrounding documentation
|
||||
* [Node Daemon] Fixes a bug where shutdown aborted migrations unexpectedly
|
||||
* [Node Daemon] Fixes a bug where the migration method was not updated realtime
|
||||
* [Node Daemon] Adjusts the Patroni commands to remove reference to Zookeeper path
|
||||
* [CLI Client] Adjusts several help messages and fixes some typos
|
||||
* [CLI Client] Converts the CLI client to a proper Python module
|
||||
* [API Daemon] Improves VM list performance
|
||||
* [API Daemon] Adjusts VM list matching critera (only matches against the UUID if it's a full UUID)
|
||||
* [API Worker] Fixes incompatibility between Deb 10 and 11 in launching Celery worker
|
||||
* [API Daemon] Corrects several bugs with initialization command
|
||||
* [Documentation] Adds a shiny new logo and revamps introduction text
|
||||
|
||||
-- Joshua M. Boniface <joshua@boniface.me> Tue, 29 Jun 2021 19:21:31 -0400
|
||||
|
||||
pvc (0.9.20-0) unstable; urgency=high
|
||||
|
||||
* [Daemons] Implemented a Zookeeper schema handler and version 0 schema
|
||||
|
|
|
@ -42,6 +42,23 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r
|
|||
|
||||
## Changelog
|
||||
|
||||
#### v0.9.21
|
||||
|
||||
* [API Daemon] Ensures VMs stop before removing them
|
||||
* [Node Daemon] Fixes a bug with VM shutdowns not timing out
|
||||
* [Documentation] Adds information about georedundancy caveats
|
||||
* [All] Adds support for SR-IOV NICs (hostdev and macvtap) and surrounding documentation
|
||||
* [Node Daemon] Fixes a bug where shutdown aborted migrations unexpectedly
|
||||
* [Node Daemon] Fixes a bug where the migration method was not updated realtime
|
||||
* [Node Daemon] Adjusts the Patroni commands to remove reference to Zookeeper path
|
||||
* [CLI Client] Adjusts several help messages and fixes some typos
|
||||
* [CLI Client] Converts the CLI client to a proper Python module
|
||||
* [API Daemon] Improves VM list performance
|
||||
* [API Daemon] Adjusts VM list matching critera (only matches against the UUID if it's a full UUID)
|
||||
* [API Worker] Fixes incompatibility between Deb 10 and 11 in launching Celery worker
|
||||
* [API Daemon] Corrects several bugs with initialization command
|
||||
* [Documentation] Adds a shiny new logo and revamps introduction text
|
||||
|
||||
#### v0.9.20
|
||||
|
||||
* [Daemons] Implemented a Zookeeper schema handler and version 0 schema
|
||||
|
|
|
@ -55,7 +55,7 @@ import pvcnoded.CephInstance as CephInstance
|
|||
import pvcnoded.MetadataAPIInstance as MetadataAPIInstance
|
||||
|
||||
# Version string for startup output
|
||||
version = '0.9.20'
|
||||
version = '0.9.21'
|
||||
|
||||
###############################################################################
|
||||
# PVCD - node daemon startup program
|
||||
|
|
Loading…
Reference in New Issue