From 5fd02f107e6d1288d6b46e9e24a2800eb2ea4bbe Mon Sep 17 00:00:00 2001 From: Nathan LeRoy Date: Tue, 25 Jul 2023 12:12:54 -0400 Subject: [PATCH 1/2] hot fix for the namespace issue --- pephub/routers/api/v1/namespace.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pephub/routers/api/v1/namespace.py b/pephub/routers/api/v1/namespace.py index 326e7559..34d3215f 100644 --- a/pephub/routers/api/v1/namespace.py +++ b/pephub/routers/api/v1/namespace.py @@ -30,7 +30,7 @@ @namespace.get( "/", summary="Fetch details about a particular namespace.", - dependencies=[Depends(verify_namespace_exists)], + # dependencies=[Depends(verify_namespace_exists)], ) async def get_namespace( request: Request, From 36ca6839a17fde167f07c9160907b7a899a634f1 Mon Sep 17 00:00:00 2001 From: Nathan LeRoy Date: Tue, 25 Jul 2023 12:15:11 -0400 Subject: [PATCH 2/2] fix namespace issue --- docs/changelog.md | 6 ++++++ pephub/_version.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/changelog.md b/docs/changelog.md index c116bcc6..5b029328 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -2,6 +2,12 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) format. +## [0.9.8] - 07-24-2023 + +### Fixed + +- cant add a PEP to a namespace if you don't have any to begin with + ## [0.9.7] - 07-24-2023 ### Fixed diff --git a/pephub/_version.py b/pephub/_version.py index f5b77301..a25765c3 100644 --- a/pephub/_version.py +++ b/pephub/_version.py @@ -1 +1 @@ -__version__ = "0.9.7" +__version__ = "0.9.8"