diff --git a/Changlogs.md b/Changlogs.md new file mode 100644 index 0000000..fe67054 --- /dev/null +++ b/Changlogs.md @@ -0,0 +1,15 @@ +# Changlogs + +## v2.1.0 + +* bug fix + +## v2.0.0 + +* bug fix +* now ``search`` object is iterable +* ``--connections`` added in cli to increase or decrease the no. of connections in download +* downloading socket timeout increase to ``15`` seconds +* added ``GoogleReCaptchaError`` in exceptions + + diff --git a/release.md b/release.md index 2b1c071..d59a965 100644 --- a/release.md +++ b/release.md @@ -1,10 +1,5 @@ - # Changlogs -## v2.0.0 +## v2.1.0 * bug fix -* now ``search`` object is iterable -* ``--connections`` added in cli to increase or decrease the no. of connections in download -* downloading socket timeout increase to ``15`` seconds -* added ``GoogleReCaptchaError`` in exceptions diff --git a/youtube/Config.py b/youtube/Config.py index 9032275..07d0f9c 100644 --- a/youtube/Config.py +++ b/youtube/Config.py @@ -4,7 +4,7 @@ """ __title__ = "youtube.py" -__version__ = "2.0.0" +__version__ = "2.1.0" __author__ = "Mayank Gupta" __license__ = "MIT License" __copyright__ = "Copyright 2020 YouTube.py (Mayank Gupta)"