Skip to content

Commit

Permalink
Bump version to 0.9.102
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuaboniface committed Oct 17, 2024
1 parent e80b797 commit 35c82b5
Show file tree
Hide file tree
Showing 7 changed files with 17 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.101
0.9.102
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## PVC Changelog

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

* [API Daemon] Ensures that received config snapshots update storage hosts in addition to secret UUIDs
* [CLI Client] Fixes several bugs around local connection handling and connection listings

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

**New Feature**: Adds VM snapshot sending (`vm snapshot send`), VM mirroring (`vm mirror create`), and (offline) mirror promotion (`vm mirror promote`). Permits transferring VM snapshots to remote clusters, individually or repeatedly, and promoting them to active status, for disaster recovery and migration between clusters.
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.101",
version="0.9.102",
packages=["pvc.cli", "pvc.lib"],
install_requires=[
"Click",
Expand Down
7 changes: 7 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
pvc (0.9.102-0) unstable; urgency=high

* [API Daemon] Ensures that received config snapshots update storage hosts in addition to secret UUIDs
* [CLI Client] Fixes several bugs around local connection handling and connection listings

-- Joshua M. Boniface <joshua@boniface.me> Thu, 17 Oct 2024 10:48:31 -0400

pvc (0.9.101-0) unstable; urgency=high

**New Feature**: Adds VM snapshot sending (`vm snapshot send`), VM mirroring (`vm mirror create`), and (offline) mirror promotion (`vm mirror promote`). Permits transferring VM snapshots to remote clusters, individually or repeatedly, and promoting them to active status, for disaster recovery and migration between clusters.
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.101"
version = "0.9.102"


##########################################################
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.101"
version = "0.9.102"


##########################################################
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 @@ -55,7 +55,7 @@
)

# Daemon version
version = "0.9.101"
version = "0.9.102"


config = cfg.get_configuration()
Expand Down

0 comments on commit 35c82b5

Please sign in to comment.