Bump version to 1.0.3
This commit is contained in:
@@ -1,5 +1,10 @@
|
||||
## PVC Changelog
|
||||
|
||||
###### [v1.0.3](https://github.com/parallelvirtualcluster/pvc/releases/tag/v1.0.3)
|
||||
|
||||
* Fixes silent errors in the dnsmasq DHCP lease handler which can prevent leases from updating
|
||||
* Improves the 3-debootstrap.py provisioner example script to work with Debian 13+
|
||||
|
||||
###### [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
|
||||
|
||||
@@ -30,7 +30,7 @@ from yaml import load as yload
|
||||
from yaml import SafeLoader
|
||||
|
||||
|
||||
VERSION = "1.0.2"
|
||||
VERSION = "1.0.3"
|
||||
|
||||
DEFAULT_STORE_DATA = {"cfgfile": "/etc/pvc/pvc.conf"}
|
||||
DEFAULT_STORE_FILENAME = "pvc.json"
|
||||
|
||||
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "pvc"
|
||||
version = "1.0.2"
|
||||
version = "1.0.3"
|
||||
dependencies = [
|
||||
"Click",
|
||||
"PyYAML",
|
||||
|
||||
7
debian/changelog
vendored
7
debian/changelog
vendored
@@ -1,3 +1,10 @@
|
||||
pvc (1.0.3-0) unstable; urgency=high
|
||||
|
||||
* Fixes silent errors in the dnsmasq DHCP lease handler which can prevent leases from updating
|
||||
* Improves the 3-debootstrap.py provisioner example script to work with Debian 13+
|
||||
|
||||
-- Joshua M. Boniface <joshua@boniface.me> Sun, 01 Mar 2026 22:48:49 -0500
|
||||
|
||||
pvc (1.0.2-0) unstable; urgency=high
|
||||
|
||||
* [Worker Daemon] [Bugfix] Fixed a bug in the calling of osd create-db-vg command worker
|
||||
|
||||
@@ -33,7 +33,7 @@ import os
|
||||
import signal
|
||||
|
||||
# Daemon version
|
||||
version = "1.0.2"
|
||||
version = "1.0.3"
|
||||
|
||||
|
||||
##########################################################
|
||||
|
||||
@@ -49,7 +49,7 @@ import re
|
||||
import json
|
||||
|
||||
# Daemon version
|
||||
version = "1.0.2"
|
||||
version = "1.0.3"
|
||||
|
||||
|
||||
##########################################################
|
||||
|
||||
@@ -58,7 +58,7 @@ from daemon_lib.automirror import (
|
||||
)
|
||||
|
||||
# Daemon version
|
||||
version = "1.0.2"
|
||||
version = "1.0.3"
|
||||
|
||||
|
||||
config = cfg.get_configuration()
|
||||
|
||||
Reference in New Issue
Block a user