Skip to content

Commit

Permalink
Bump version to 0.9.104
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuaboniface committed Nov 18, 2024
1 parent 82cef60 commit 31254e8
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.103
0.9.104
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
## PVC Changelog

###### [v0.9.104](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.104)

* [API Daemon] Fixes a bug that failed uploading of RAW block devices in "storage volume upload"
* [API Daemon/CLI Client] Adds support for VM automirrors, replicating the functionality of autobackup but for cross-cluster mirroring
* [CLI Client] Improves the help output of several commands
* [API Daemon/CLI Client] Moves VM snapshot age conversions to human-readable values out of the API and into the client to open up more programatic handling in the future
* [Worker Daemon] Improves the Celery logging output clarity by including the calling function in any task output

###### [v0.9.103](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.103)

* [Provisioner] Fixes a bug with the change in `storage_hosts` to FQDNs affecting the VM Builder
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.103",
version="0.9.104",
packages=["pvc.cli", "pvc.lib"],
install_requires=[
"Click",
Expand Down
10 changes: 10 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
pvc (0.9.104-0) unstable; urgency=high

* [API Daemon] Fixes a bug that failed uploading of RAW block devices in "storage volume upload"
* [API Daemon/CLI Client] Adds support for VM automirrors, replicating the functionality of autobackup but for cross-cluster mirroring
* [CLI Client] Improves the help output of several commands
* [API Daemon/CLI Client] Moves VM snapshot age conversions to human-readable values out of the API and into the client to open up more programatic handling in the future
* [Worker Daemon] Improves the Celery logging output clarity by including the calling function in any task output

-- Joshua M. Boniface <[email protected]> Mon, 18 Nov 2024 10:53:56 -0500

pvc (0.9.103-0) unstable; urgency=high

* [Provisioner] Fixes a bug with the change in `storage_hosts` to FQDNs affecting the VM Builder
Expand Down
2 changes: 1 addition & 1 deletion health-daemon/pvchealthd/Daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
import signal

# Daemon version
version = "0.9.103"
version = "0.9.104"


##########################################################
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 @@ -49,7 +49,7 @@
import json

# Daemon version
version = "0.9.103"
version = "0.9.104"


##########################################################
Expand Down
2 changes: 1 addition & 1 deletion worker-daemon/pvcworkerd/Daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
)

# Daemon version
version = "0.9.103"
version = "0.9.104"


config = cfg.get_configuration()
Expand Down

0 comments on commit 31254e8

Please sign in to comment.