diff --git a/.gitignore b/.gitignore index a20c456..389296f 100644 --- a/.gitignore +++ b/.gitignore @@ -106,3 +106,5 @@ venv.bak/ # mypy .mypy_cache/ + +.DS_Store/ \ No newline at end of file diff --git a/README.md b/README.md index 21f69d9..11cf468 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ The Yahoo Fantasy Sports API is difficult to comprehend, has [this strange one-page documentation setup](https://developer.yahoo.com/fantasysports/guide/) that is hard to navigate, and seems to only want to conform to a small portion of the OAuth spec. This library/SDK makes your life easier if you want to write an app that interfaces with the Yahoo Fantasy Sports API. -This library will, in theory, work for any Yahoo Fantasy Sports API leagues/teams. It contains some common constructs and helper methods for head-to-head leagues and the sports of NFL 🏈, MLB ⚾, and NBA 🏀 at this time. More sports and league types are planned for the future. +This library will, in theory, work for any Yahoo Fantasy Sports API leagues/teams. It contains some common constructs and helper methods for head-to-head leagues and the sports of NFL 🏈, MLB ⚾, NHL 🏒 and NBA 🏀 at this time. More sports and league types are planned for the future. ## Table of Contents diff --git a/yahoofantasy/__init__.py b/yahoofantasy/__init__.py index 816bdd8..341b9d2 100644 --- a/yahoofantasy/__init__.py +++ b/yahoofantasy/__init__.py @@ -7,5 +7,4 @@ from .resources.week import Week # noqa: F401 from .stats.stat import Stat # noqa: F401 -__version__ = "1.3.2" - +__version__ = "1.3.1"