Skip to content

Commit 76fd48f

Browse files
Merge pull request #45 from pepkit/dev
Release 0.4.4
2 parents 0c53e2d + cd335fa commit 76fd48f

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

docs/changelog.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,14 @@
33
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.
44

55

6+
## [0.4.4] - 2024-08-21
7+
### Fixed
8+
- Project annotation model
9+
10+
611
## [0.4.3] - 2024-07-19
712
### Updated
8-
- Updated models for new pephub API
13+
- Updated models for new PEPhub API
914

1015

1116
## [0.4.2] - 2024-04-16

pephubclient/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import coloredlogs
55

66
__app_name__ = "pephubclient"
7-
__version__ = "0.4.3"
7+
__version__ = "0.4.4"
88
__author__ = "Oleksandr Khoroshevskyi, Rafal Stepien"
99

1010

pephubclient/models.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class ProjectAnnotationModel(BaseModel):
4242
last_update_date: datetime.datetime
4343
submission_date: datetime.datetime
4444
digest: str
45-
pep_schema: str
45+
pep_schema: Union[str, int, None] = None
4646
pop: bool = False
4747
stars_number: Optional[int] = 0
4848
forked_from: Optional[Union[str, None]] = None

requirements/requirements-all.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
typer>=0.7.0
2-
peppy>=0.40.1
2+
peppy>=0.40.5
33
requests>=2.28.2
44
pydantic>2.5.0
55
pandas>=2.0.0

0 commit comments

Comments
 (0)