Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Last minute tweaks + doc updates #263

Merged
merged 3 commits into from
Jan 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion pephub/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.11.0rc2"
__version__ = "0.11.0"
2 changes: 1 addition & 1 deletion web/src/api/namespace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<BiggestNamespaces>(url).then((res) => res.data);
};

Expand Down
Loading