Skip to content

Commit 9ff3964

Browse files
committed
Version Up
1 parent 75dffc0 commit 9ff3964

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ addons/test.py:
3636
import dico_command
3737

3838

39-
class AddonTest(dico_command.Addon, name="Addon Test"):
39+
class AddonTest(dico_command.Addon, name="Addon Test"): # name=... is optional
4040
@dico_command.command(name="addon")
4141
async def example(self, ctx: dico_command.Context):
4242
await ctx.send(f"Hello! This is addon `{self.name}`.")

dico_command/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
:license: MIT
77
"""
88

9-
__version__ = "0.0.1"
9+
__version__ = "0.0.2"
1010

1111
from .addon import *
1212
from .bot import *

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="dico-command",
8-
version="0.0.1",
8+
version="0.0.2",
99
author="eunwoo1104",
1010
author_email="[email protected]",
1111
description="Command handler for dico.",

0 commit comments

Comments
 (0)