diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..1513c4f --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,30 @@ +# Changelog + +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.3 (April 4th, 2021) + +### Added +* Support for characters. + +### Changed +* HTTP2 enabled (async mode only). + +## 1.0.2 (March 8th, 2021) + +### Added +* Support for mangas. + +### Changed +* Some bug fixes. + +## 1.0.1 (March 8th, 2021) + +### Changed +* Bug fixes. + +## 1.0.0 (March 8th, 2021) + +* First release \ No newline at end of file diff --git a/MANIFEST.in b/MANIFEST.in index 689e50f..40d843f 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,3 @@ +include CHANGELOG.md include LICENSE include README.md \ No newline at end of file diff --git a/anilist/__init__.py b/anilist/__init__.py index c5a1aa4..79019cc 100644 --- a/anilist/__init__.py +++ b/anilist/__init__.py @@ -23,7 +23,7 @@ __author__ = "AmanoTeam" __email__ = "contact@amanoteam.com" __license__ = "MIT" -__version__ = "1.0.2" +__version__ = "1.0.3" from . import types diff --git a/setup.py b/setup.py index ecb7636..39609df 100644 --- a/setup.py +++ b/setup.py @@ -3,11 +3,15 @@ with open("README.md", "r") as file: readme = file.read() +with open("CHANGELOG.md", "r") as file: + readme += "\n\n" + readme += file.read() + setup( name="python-anilist", - version="1.0.2", + version="1.0.3", packages=find_packages(), - install_requires=["httpx[http2] >= 0.14"], + install_requires=["httpx[http2]>=0.14"], url="https://github.com/AmanoTeam/python-anilist", python_requires=">=3.6", author="AmanoTeam",