Compare commits
	
		
			2 Commits
		
	
	
		
			73c1ac732e
			...
			6146b062d6
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 6146b062d6 | |||
| 74193c7e2a | 
@@ -1,5 +1,9 @@
 | 
			
		||||
## PVC Changelog
 | 
			
		||||
 | 
			
		||||
###### [v0.9.53](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.53)
 | 
			
		||||
 | 
			
		||||
  * [API] Fixes sort order of VM list (for real this time)
 | 
			
		||||
 | 
			
		||||
###### [v0.9.52](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.52)
 | 
			
		||||
 | 
			
		||||
  * [CLI] Fixes a bug with vm modify not requiring a cluster
 | 
			
		||||
 
 | 
			
		||||
@@ -25,7 +25,7 @@ import yaml
 | 
			
		||||
from distutils.util import strtobool as dustrtobool
 | 
			
		||||
 | 
			
		||||
# Daemon version
 | 
			
		||||
version = "0.9.52"
 | 
			
		||||
version = "0.9.53"
 | 
			
		||||
 | 
			
		||||
# API version
 | 
			
		||||
API_VERSION = 1.0
 | 
			
		||||
 
 | 
			
		||||
@@ -2,7 +2,7 @@ from setuptools import setup
 | 
			
		||||
 | 
			
		||||
setup(
 | 
			
		||||
    name="pvc",
 | 
			
		||||
    version="0.9.52",
 | 
			
		||||
    version="0.9.53",
 | 
			
		||||
    packages=["pvc", "pvc.cli_lib"],
 | 
			
		||||
    install_requires=[
 | 
			
		||||
        "Click",
 | 
			
		||||
 
 | 
			
		||||
@@ -1292,4 +1292,4 @@ def get_list(zkhandler, node, state, tag, limit, is_fuzzy=True, negate=False):
 | 
			
		||||
            except Exception:
 | 
			
		||||
                pass
 | 
			
		||||
 | 
			
		||||
    return True, vm_data_list
 | 
			
		||||
    return True, sorted(vm_data_list, key=lambda d: d["name"])
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										6
									
								
								debian/changelog
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								debian/changelog
									
									
									
									
										vendored
									
									
								
							@@ -1,3 +1,9 @@
 | 
			
		||||
pvc (0.9.53-0) unstable; urgency=high
 | 
			
		||||
 | 
			
		||||
  * [API] Fixes sort order of VM list (for real this time)
 | 
			
		||||
 | 
			
		||||
 -- Joshua M. Boniface <joshua@boniface.me>  Fri, 12 Aug 2022 17:47:11 -0400
 | 
			
		||||
 | 
			
		||||
pvc (0.9.52-0) unstable; urgency=high
 | 
			
		||||
 | 
			
		||||
  * [CLI] Fixes a bug with vm modify not requiring a cluster
 | 
			
		||||
 
 | 
			
		||||
@@ -48,7 +48,7 @@ import re
 | 
			
		||||
import json
 | 
			
		||||
 | 
			
		||||
# Daemon version
 | 
			
		||||
version = "0.9.52"
 | 
			
		||||
version = "0.9.53"
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
##########################################################
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user