From 44a10ccd01c56772a727ab1c5d4ccab317573295 Mon Sep 17 00:00:00 2001 From: limengxun Date: Thu, 20 Feb 2025 10:15:04 +0800 Subject: [PATCH] 0.1.11 --- docs/api_data.ts | 4 ---- pody/version.py | 7 ++++++- pyproject.toml | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/docs/api_data.ts b/docs/api_data.ts index c332d66..2b45169 100644 --- a/docs/api_data.ts +++ b/docs/api_data.ts @@ -256,10 +256,6 @@ const apiData: { [key: string]: APIDescription } ={ "/version": { method: "GET", description: "Get the version of the API", - example: { - input: {}, - output: [0, 1, 10] - } } } diff --git a/pody/version.py b/pody/version.py index 66b2309..9ab20bf 100644 --- a/pody/version.py +++ b/pody/version.py @@ -5,7 +5,12 @@ ], "0.1.10": [ "Remove /status route, add /host/spec and /version routes", - ] + ], + "0.1.11": [ + "Use sqlite for logging", + "Add version client command", + "Improve response for duplicate pod creation", + ], } VERSION = tuple([int(x) for x in list(VERSION_HISTORY.keys())[-1].split('.')]) \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index d634308..47ed541 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pody" -version = "0.1.10" +version = "0.1.11" description = "Pod manager for docker, give limited access to docker for clients." authors = ["Li, Mengxun ", "Li, Jiayu "] readme = "readme.md"