Compare commits

..

2 Commits

Author SHA1 Message Date
eff972a62e Bump version to 1.0.2 2026-01-30 10:05:04 -05:00
113ecec18f Fix bad function definition 2026-01-30 09:56:59 -05:00
9 changed files with 17 additions and 7 deletions

View File

@@ -1 +1 @@
1.0.1
1.0.2

View File

@@ -1,5 +1,9 @@
## PVC Changelog
###### [v1.0.2](https://github.com/parallelvirtualcluster/pvc/releases/tag/v1.0.2)
* [Worker Daemon] [Bugfix] Fixed a bug in the calling of osd create-db-vg command worker
###### [v1.0.1](https://github.com/parallelvirtualcluster/pvc/releases/tag/v1.0.1)
* [CLI Client] [Bugfix] Fix bug with DELETE endpoints returning invalid data

View File

@@ -30,7 +30,7 @@ from yaml import load as yload
from yaml import SafeLoader
VERSION = "1.0.1"
VERSION = "1.0.2"
DEFAULT_STORE_DATA = {"cfgfile": "/etc/pvc/pvc.conf"}
DEFAULT_STORE_FILENAME = "pvc.json"

View File

@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "pvc"
version = "1.0.1"
version = "1.0.2"
dependencies = [
"Click",
"PyYAML",

View File

@@ -2486,7 +2486,7 @@ def osd_worker_remove_osd(
)
def osd_worker_add_db_vg(zkhandler, celery, device):
def osd_worker_add_db_vg(zkhandler, celery, node, device):
# Set up stages
current_stage = 0
total_stages = 4

6
debian/changelog vendored
View File

@@ -1,3 +1,9 @@
pvc (1.0.2-0) unstable; urgency=high
* [Worker Daemon] [Bugfix] Fixed a bug in the calling of osd create-db-vg command worker
-- Joshua M. Boniface <joshua@boniface.me> Fri, 30 Jan 2026 09:58:00 -0500
pvc (1.0.1-0) unstable; urgency=high
* [CLI Client] [Bugfix] Fix bug with DELETE endpoints returning invalid data

View File

@@ -33,7 +33,7 @@ import os
import signal
# Daemon version
version = "1.0.1"
version = "1.0.2"
##########################################################

View File

@@ -49,7 +49,7 @@ import re
import json
# Daemon version
version = "1.0.1"
version = "1.0.2"
##########################################################

View File

@@ -58,7 +58,7 @@ from daemon_lib.automirror import (
)
# Daemon version
version = "1.0.1"
version = "1.0.2"
config = cfg.get_configuration()