Skip to content

Commit

Permalink
Bump version to 0.9.96
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuaboniface committed Mar 8, 2024
1 parent a461791 commit 78c774b
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.95
0.9.96
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.96](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.96)

* [API Daemon] Fixes a bug when reporting node stats
* [API Daemon] Fixes a bug deleteing successful benchmark results

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

* [API Daemon/CLI Client] Adds a flag to allow duplicate VNIs in network templates
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 @@ -27,7 +27,7 @@
import daemon_lib.config as cfg

# Daemon version
version = "0.9.95"
version = "0.9.96"

# 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.95",
version="0.9.96",
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.96-0) unstable; urgency=high

* [API Daemon] Fixes a bug when reporting node stats
* [API Daemon] Fixes a bug deleteing successful benchmark results

-- Joshua M. Boniface <[email protected]> Fri, 08 Mar 2024 14:23:06 -0500

pvc (0.9.95-0) unstable; urgency=high

* [API Daemon/CLI Client] Adds a flag to allow duplicate VNIs in network templates
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.95"
version = "0.9.96"


##########################################################
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.95"
version = "0.9.96"


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

# Daemon version
version = "0.9.95"
version = "0.9.96"


config = cfg.get_configuration()
Expand Down

0 comments on commit 78c774b

Please sign in to comment.