From 9044be1283619ec9028f3e13da5d8a75b2bc2ee2 Mon Sep 17 00:00:00 2001 From: Nathan LeRoy Date: Tue, 16 Jan 2024 15:23:40 -0500 Subject: [PATCH 1/2] update landing query --- web/src/api/namespace.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/api/namespace.ts b/web/src/api/namespace.ts index 42855cc0..90503ef1 100644 --- a/web/src/api/namespace.ts +++ b/web/src/api/namespace.ts @@ -68,7 +68,7 @@ export const getNamespaceInfo = (namespace: string, token: string | null = null) }; export const getBiggestNamespaces = (limit: number) => { - const url = `${API_BASE}/namespace/info?limit=${limit}`; // note the trailing slash + const url = `${API_BASE}/namespaces/info?limit=${limit}`; // note the trailing slash return axios.get(url).then((res) => res.data); }; From d16dc4b8f1e1b11e72bde6cabb54e54d04c0ada1 Mon Sep 17 00:00:00 2001 From: Nathan LeRoy Date: Tue, 16 Jan 2024 15:27:21 -0500 Subject: [PATCH 2/2] tweaks --- docs/changelog.md | 18 +++++++++++++++--- pephub/_version.py | 2 +- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index 7e87f6b1..341b99e1 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -2,16 +2,28 @@ 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.11.0] - 01-16-2024 + +### Added + +- Group of PEPs, create a new type of PEP called a "POP" (a PEP of PEPs) +- Ability to star/favorite a PEP +- Updated search functionality to be more robust + +### Changed + +- Switch to `fastembed` for query embeddings to lower container size +- Minor UI updates + ## [0.10.5] - 12-04-2023 ### Changed -- optimized web interface fetching of PEP annotation data. +- optimized web interface fetching of PEP annotation data. ### Added -- project annotation endpoint (#234) - +- project annotation endpoint (#234) # [0.10.4] - 10-02-2023 diff --git a/pephub/_version.py b/pephub/_version.py index c2120956..ae6db5f1 100644 --- a/pephub/_version.py +++ b/pephub/_version.py @@ -1 +1 @@ -__version__ = "0.11.0rc2" +__version__ = "0.11.0"