From 0ccfc41398c9d5640ec0a256a29a53ee94d0714c Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Wed, 17 Feb 2021 11:37:59 -0500 Subject: [PATCH] Bump version to 0.9.13 --- README.md | 10 ++++++++++ debian/changelog | 12 ++++++++++++ docs/index.md | 10 ++++++++++ node-daemon/pvcnoded/Daemon.py | 2 +- 4 files changed, 33 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f9f11f79..81ce865e 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,16 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r ## Changelog +#### v0.9.13 + + * Adds nicer startup messages for daemons + * Adds additional API field for stored_bytes to pool stats + * Fixes sorting issues with snapshot lists + * Fixes missing increment/decrement of snapshot_count on volumes + * Fixes bad calls in pool element API endpoints + * Fixes inconsistent bytes_tohuman behaviour in daemons + * Adds validation and maximum volume size on creation (must be smaller than the pool free space) + #### v0.9.12 * Fixes a bug in the pvcnoded service unit file causing a Zookeeper startup race condition diff --git a/debian/changelog b/debian/changelog index 4c5bccb9..380801c1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +pvc (0.9.13-0) unstable; urgency=high + + * Adds nicer startup messages for daemons + * Adds additional API field for stored_bytes to pool stats + * Fixes sorting issues with snapshot lists + * Fixes missing increment/decrement of snapshot_count on volumes + * Fixes bad calls in pool element API endpoints + * Fixes inconsistent bytes_tohuman behaviour in daemons + * Adds validation and maximum volume size on creation (must be smaller than the pool free space) + + -- Joshua M. Boniface Wed, 17 Feb 2021 11:33:28 -0500 + pvc (0.9.12-0) unstable; urgency=high * Fixes a bug in the pvcnoded service unit file causing a Zookeeper startup race condition diff --git a/docs/index.md b/docs/index.md index b3c3e333..6d596a9e 100644 --- a/docs/index.md +++ b/docs/index.md @@ -18,6 +18,16 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r ## Changelog +#### v0.9.13 + + * Adds nicer startup messages for daemons + * Adds additional API field for stored_bytes to pool stats + * Fixes sorting issues with snapshot lists + * Fixes missing increment/decrement of snapshot_count on volumes + * Fixes bad calls in pool element API endpoints + * Fixes inconsistent bytes_tohuman behaviour in daemons + * Adds validation and maximum volume size on creation (must be smaller than the pool free space) + #### v0.9.12 * Fixes a bug in the pvcnoded service unit file causing a Zookeeper startup race condition diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 3a063d50..f6f4fbea 100644 --- a/node-daemon/pvcnoded/Daemon.py +++ b/node-daemon/pvcnoded/Daemon.py @@ -54,7 +54,7 @@ import pvcnoded.CephInstance as CephInstance import pvcnoded.MetadataAPIInstance as MetadataAPIInstance # Version string for startup output -version = '0.9.12' +version = '0.9.13' ############################################################################### # PVCD - node daemon startup program