diff --git a/CHANGELOG.md b/CHANGELOG.md index 16841e1..7a12975 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## 1.0.8 (February 16th, 2022) + +### Added + +- `.relations` for animes and mangas. + +### Changed + +- Separate queries into separate files. +- Happy new year (late). + ## 1.0.7 (January 18th, 2022) ### Added diff --git a/README.md b/README.md index e3c1021..e5490bf 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ ## Requirements -- Python 3.6 or higher. +- Python 3.7 or higher. - httpx 0.14 or higher. ## Installation @@ -36,7 +36,6 @@ python3 -m pip install git+https://github.com/AmanoTeam/python-anilist.git#egg=p ## What's left to do? - Write the API Documentation. -- Add support for more types of content. - Show some examples. ## Credits @@ -45,7 +44,7 @@ python3 -m pip install git+https://github.com/AmanoTeam/python-anilist.git#egg=p ## License -Copyright © 2021 [AmanoTeam](https://github.com/AmanoTeam) +Copyright © 2021-2022 [AmanoTeam](https://github.com/AmanoTeam) and the python-anilist contributors Licensed under the [Expat/MIT license](LICENSE). diff --git a/anilist/__init__.py b/anilist/__init__.py index 8e1f24d..df1ff8e 100644 --- a/anilist/__init__.py +++ b/anilist/__init__.py @@ -6,7 +6,7 @@ __author__ = "AmanoTeam" __email__ = "contact@amanoteam.com" __license__ = "MIT" -__version__ = "1.0.7" +__version__ = "1.0.8" from . import types diff --git a/setup.cfg b/setup.cfg index e6001d2..3fd867e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ [metadata] name = python-anilist -version = 1.0.7 +version = 1.0.8 url = https://github.com/AmanoTeam/python-anilist author = AmanoTeam author_email = contact@amanoteam.com