Skip to content

Commit

Permalink
Version Up
Browse files Browse the repository at this point in the history
  • Loading branch information
eunwoo1104 committed Jan 1, 2022
1 parent 2f5ee7e commit 0bb80e2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs:
run: pip install -r requirements.txt -r requirements-dev.txt

- name: Check Style
run: black dico
run: black --check dico
2 changes: 1 addition & 1 deletion dico/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
:license: MIT
"""

__version__ = "0.0.30"
__version__ = "0.0.31"

from .api import APIClient
from .client import Client
Expand Down
1 change: 1 addition & 0 deletions dico/voice/encryptor.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
try:
from nacl import secret
from nacl import utils

nacl_missing = False
except ImportError:
secret = None
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setuptools.setup(
name="dico-api",
version="0.0.30",
version="0.0.31",
author="eunwoo1104",
author_email="[email protected]",
description="Yet another Discord API wrapper for Python.",
Expand Down

0 comments on commit 0bb80e2

Please sign in to comment.