Skip to content
This repository was archived by the owner on Mar 8, 2022. It is now read-only.

Commit 41e1eee

Browse files
author
kuso-senpai
committed
v1.0.3
1 parent 6771344 commit 41e1eee

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This is a [discord.py](https://github.com/Rapptz/discord.py) button extension ma
88
- [Receiving a button press](#Receiving)
99
- [Complete example](#Example)
1010
- [Code docs](#Code-docs)
11-
- [Future added](#Future)
11+
- [Changelog](#Changelog)
1212

1313
- - - -
1414

@@ -604,4 +604,13 @@ Added events for `client.wait_for` and `client.listen`
604604
[`ResponseMessage`](##-responsemessage-class)
605605
> The message with the interaction on which the button was pressed
606606

607+
</details>
608+
609+
# Changelog
610+
611+
- <details>
612+
<summary>1.0.3</summary>
613+
614+
- Added `hash` attribute to buttons
615+
607616
</details>

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
discord.py
1+
discord.py
2+
requests

setup.py

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

44

55
def getVersion():
6-
with open("discord_py_buttons/__init__.py", "r", encoding="utf-8") as f:
6+
with open("./discord_py_buttons/__init__.py", "r", encoding="utf-8") as f:
77
return [f for f in f.readlines() if f.startswith("__version__")][0].split('"')[1].split('"')[0]
88
def getReadme():
99
with open("./README.md", "r", encoding="utf-8") as f:

0 commit comments

Comments
 (0)