Skip to content

Commit

Permalink
Merge pull request #273 from pepkit/dev
Browse files Browse the repository at this point in the history
Release 0.11.4
  • Loading branch information
khoroshevskyi authored Jan 23, 2024
2 parents b69f38b + 6f0a511 commit d1bc925
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
6 changes: 6 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.11.4] - 01-22-2024

### Fixed
- Downloading zip files


## [0.11.2] - 01-17-2024

### Added
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.3"
__version__ = "0.11.4"
2 changes: 1 addition & 1 deletion requirements/requirements-all.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
fastapi>=0.108.0
psycopg>=3.1.15
pepdbagent>=0.7.0
pepdbagent>=0.7.1
peppy>=0.40.1
eido>=0.2.2
jinja2>=3.1.2
Expand Down
4 changes: 3 additions & 1 deletion web/src/utils/project.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
const API_HOST = import.meta.env.VITE_API_HOST || '';

export const downloadZip = (namespace: string, project: string, tag: string, jwt: string | undefined | null) => {
const completeName = `${namespace}-${project}-${tag}`;
fetch(`/api/v1/projects/${namespace}/${project}/zip?tag=${tag}`, {
fetch(`${API_HOST}/api/v1/projects/${namespace}/${project}/zip?tag=${tag}`, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
Expand Down

0 comments on commit d1bc925

Please sign in to comment.