Skip to content

Commit

Permalink
v1.0.3 commit
Browse files Browse the repository at this point in the history
  • Loading branch information
swar committed Sep 26, 2018
1 parent 0e4b1bd commit dc7c7de
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# nba_api

##### Current Version: v1.0.2
##### Current Version: v1.0.3

`nba_api` is an API Client for `www.nba.com`. This package is meant to make the API Endpoints more accessible and to provide extensive documentation.

Expand Down
15 changes: 15 additions & 0 deletions docs/version_log.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# `v1.0.3`
#### 2018-09-25
* Fixed a bug in `find_team_name_by_id()` in static/teams.

# `v1.0.2`
#### 2018-09-17
* Added `__all__` to the following file: `nba_api/nba_api/stats/static/__init__.py`

# `v1.0.1`
#### 2018-09-17
* Added `__init__.py` to the following directory: `nba_api/nba_api/stats/static`

# `v1.0.0`
#### 2018-09-16
* The initial release of `nba_api`.
3 changes: 0 additions & 3 deletions docs/version_log/1.0.0.md

This file was deleted.

3 changes: 0 additions & 3 deletions docs/version_log/1.0.1.md

This file was deleted.

3 changes: 0 additions & 3 deletions docs/version_log/1.0.2.md

This file was deleted.

2 changes: 1 addition & 1 deletion nba_api/stats/static/teams.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def find_team_name_by_id(team_id):
elif not teams_list:
return None
else:
return {_get_team_dict(teams_list[0])}
return teams_list[0]


def get_teams():
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="nba_api",
version="1.0.2",
version="1.0.3",
author="Swar Patel",
author_email="[email protected]",
description="An API Client package to access the APIs for NBA.com",
Expand Down

0 comments on commit dc7c7de

Please sign in to comment.