Skip to content

Commit

Permalink
Merge pull request #42 from questionlp/develop
Browse files Browse the repository at this point in the history
Bump wwdtm to 2.4.0
  • Loading branch information
questionlp authored Sep 10, 2023
2 parents 26bf5a2 + 8ca1098 commit b505a93
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changes

## 2.4.1

### Application Changes

- Correct typo in the docstring for `LocationRecordings` model

### Component Changes

- Upgrade wwdtm from 2.3.0 to 2.4.0

## 2.4.0

### Application Changes
Expand Down
2 changes: 1 addition & 1 deletion app/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from typing import Any, Dict

API_VERSION = "2.0"
APP_VERSION = "2.4.0"
APP_VERSION = "2.4.1"


def load_config(
Expand Down
2 changes: 1 addition & 1 deletion app/models/locations.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class LocationRecordingShow(BaseModel):


class LocationRecordings(BaseModel):
"""Loation Information and Recordings"""
"""Location Information and Recordings"""

count: Optional[LocationRecordingCounts] = Field(
default=None, title="Count of Show Recordings"
Expand Down
4 changes: 3 additions & 1 deletion app/models/panelists.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,9 @@ class PanelistScoresList(BaseModel):
shows: Optional[List[str]] = Field(
default=None, title="List of Panelist Appearances as Show Dates"
)
scores: Optional[List[Union[Decimal, int]]] = Field(default=None, title="List of Panelist Scores")
scores: Optional[List[Union[Decimal, int]]] = Field(
default=None, title="List of Panelist Scores"
)


class ScoresOrderedPair(BaseModel):
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ jinja2==3.1.2
email-validator==2.0.0.post2
requests==2.31.0

wwdtm==2.3.0
wwdtm==2.4.0
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ jinja2==3.1.2
email-validator==2.0.0.post2
requests==2.31.0

wwdtm==2.3.0
wwdtm==2.4.0

0 comments on commit b505a93

Please sign in to comment.