Skip to content

Commit

Permalink
Merge pull request #45 from pepkit/dev
Browse files Browse the repository at this point in the history
Release 0.4.4
  • Loading branch information
khoroshevskyi authored Aug 21, 2024
2 parents 0c53e2d + cd335fa commit 76fd48f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,14 @@
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.4.4] - 2024-08-21
### Fixed
- Project annotation model


## [0.4.3] - 2024-07-19
### Updated
- Updated models for new pephub API
- Updated models for new PEPhub API


## [0.4.2] - 2024-04-16
Expand Down
2 changes: 1 addition & 1 deletion pephubclient/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import coloredlogs

__app_name__ = "pephubclient"
__version__ = "0.4.3"
__version__ = "0.4.4"
__author__ = "Oleksandr Khoroshevskyi, Rafal Stepien"


Expand Down
2 changes: 1 addition & 1 deletion pephubclient/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class ProjectAnnotationModel(BaseModel):
last_update_date: datetime.datetime
submission_date: datetime.datetime
digest: str
pep_schema: str
pep_schema: Union[str, int, None] = None
pop: bool = False
stars_number: Optional[int] = 0
forked_from: Optional[Union[str, None]] = None
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements-all.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
typer>=0.7.0
peppy>=0.40.1
peppy>=0.40.5
requests>=2.28.2
pydantic>2.5.0
pandas>=2.0.0
Expand Down

0 comments on commit 76fd48f

Please sign in to comment.