From 97431f8997f444652aad080bda0c4e3e6421ddd5 Mon Sep 17 00:00:00 2001 From: simon Date: Wed, 29 Dec 2021 20:00:41 +0700 Subject: [PATCH] bump version for new release --- ryd-client/ryd_client.py | 2 +- setup.py | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ryd-client/ryd_client.py b/ryd-client/ryd_client.py index e52a44f..7fc6ede 100644 --- a/ryd-client/ryd_client.py +++ b/ryd-client/ryd_client.py @@ -8,7 +8,7 @@ import string import requests API_URL = "https://returnyoutubedislikeapi.com" -HEADERS = {"User-Agent": "https://github.com/bbilly1/ryd-client v0.0.1"} +HEADERS = {"User-Agent": "https://github.com/bbilly1/ryd-client v0.0.2"} class Login: diff --git a/setup.py b/setup.py index 0305838..2d3260e 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,5 @@ +"""setup file with project metadata""" + import setuptools with open("README.md", "r", encoding="utf-8") as fh: @@ -5,7 +7,7 @@ with open("README.md", "r", encoding="utf-8") as fh: setuptools.setup( name="ryd-client", - version="0.0.1", + version="0.0.2", author="Simon", author_email="simobilleter@gmail.com", description="api client for returnyoutubedislike.com",