Compare commits

...

7 Commits
3.1.4 ... 3.1.7

Author SHA1 Message Date
Michael H
7d36cc8366 3.1.7 2019-11-05 05:53:29 -05:00
Michael H
9fc0e627ee [Release] 3.1.7
- Handles a dependency issue for python3.8
- Updates the Lavalink jar used
  - This include's Nin's stat fix
  - Streaming from Soundcloud is working again, at least for now.
2019-11-05 05:29:08 -05:00
Michael H
989e16b20b Lavalink bump to 3.2.1_846 2019-11-05 05:28:34 -05:00
Michael H
1c648abea2 uvloop + python3.8 2019-11-05 05:23:25 -05:00
Michael H
11d87067aa Version Bump
- d.py 1.2.3 -> 1.2.4
 - Red 3.1.5 -> 3.1.6

This fixes a critical issue with voice connections.
2019-10-17 21:43:24 -04:00
Toby Harradine
6c9c57c14d Bump version to 3.1.5
Signed-off-by: Toby Harradine <tobyharradine@gmail.com>
2019-07-31 09:23:18 +10:00
Toby Harradine
404c5f6dc0 [Audio] Bump Lavalink version to 3.2.1_823
Signed-off-by: Toby Harradine <tobyharradine@gmail.com>
2019-07-31 09:22:16 +10:00
3 changed files with 7 additions and 6 deletions

View File

@@ -3,7 +3,6 @@ import sys as _sys
import warnings as _warnings
from math import inf as _inf
from typing import (
Any as _Any,
ClassVar as _ClassVar,
Dict as _Dict,
List as _List,
@@ -174,7 +173,7 @@ class VersionInfo:
)
__version__ = "3.1.4"
__version__ = "3.1.7"
version_info = VersionInfo.from_str(__version__)
# Filter fuzzywuzzy slow sequence matcher warning

View File

@@ -16,8 +16,8 @@ from tqdm import tqdm
from redbot.core import data_manager
from .errors import LavalinkDownloadFailed
JAR_VERSION = "3.2.0.3"
JAR_BUILD = 796
JAR_VERSION = "3.2.1"
JAR_BUILD = 846
LAVALINK_DOWNLOAD_URL = (
f"https://github.com/Cog-Creators/Lavalink-Jars/releases/download/{JAR_VERSION}_{JAR_BUILD}/"
f"Lavalink.jar"

View File

@@ -35,7 +35,7 @@ install_requires =
Click==7.0
colorama==0.4.1
contextlib2==0.5.5
discord.py==1.2.3
discord.py==1.2.4
distro==1.4.0; sys_platform == "linux"
fuzzywuzzy==0.17.0
idna==2.8
@@ -45,7 +45,9 @@ install_requires =
Red-Lavalink==0.3.0
schema==0.7.0
tqdm==4.32.2
uvloop==0.12.2; sys_platform != "win32" and platform_python_implementation == "CPython"
# Below is due to an issue with uvloop < 0.14 with python 3.8, move both to 0.14 at full release
uvloop==0.13.0; sys_platform != "win32" and platform_python_implementation == "CPython" and python_version<"3.8"
uvloop==0.14.0rc2; sys_platform != "win32" and platform_python_implementation == "CPython" and python_version>="3.8"
websockets==6.0
yarl==1.3.0