From 51b5c2770b38bee03ba02b09d60d4e97bd7828b4 Mon Sep 17 00:00:00 2001 From: AndrielFR Date: Sun, 4 Apr 2021 23:38:29 -0300 Subject: [PATCH] anilist: bump version to 1.0.3 * Also add a changelog file. --- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ MANIFEST.in | 1 + anilist/__init__.py | 2 +- setup.py | 8 ++++++-- 4 files changed, 38 insertions(+), 3 deletions(-) create mode 100644 CHANGELOG.md 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",