Skip to content

Commit

Permalink
anilist: bump version to 1.0.3
Browse files Browse the repository at this point in the history
* Also add a changelog file.
  • Loading branch information
AndrielFR committed Apr 5, 2021
1 parent 9125f49 commit 51b5c27
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 3 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
include CHANGELOG.md
include LICENSE
include README.md
2 changes: 1 addition & 1 deletion anilist/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
__author__ = "AmanoTeam"
__email__ = "[email protected]"
__license__ = "MIT"
__version__ = "1.0.2"
__version__ = "1.0.3"

from . import types

Expand Down
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 51b5c27

Please sign in to comment.