Skip to content

Commit

Permalink
Bump version to 0.9.21
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuaboniface committed Jun 29, 2021
1 parent 64feabf commit fe0a1d5
Show file tree
Hide file tree
Showing 7 changed files with 57 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.20
0.9.21
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.20'
version = '0.9.21'

# 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.20',
version='0.9.21',
packages=['pvc', 'pvc.cli_lib'],
install_requires=[
'Click',
Expand Down
19 changes: 19 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -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 <[email protected]> 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
Expand Down
17 changes: 17 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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 @@ -55,7 +55,7 @@
import pvcnoded.MetadataAPIInstance as MetadataAPIInstance

# Version string for startup output
version = '0.9.20'
version = '0.9.21'

###############################################################################
# PVCD - node daemon startup program
Expand Down

0 comments on commit fe0a1d5

Please sign in to comment.