Skip to content

Commit f7aa7b1

Browse files
committed
fix weird duplication in changelog + version bump
Also fixed some out of date info in the sphinx config
1 parent e51c270 commit f7aa7b1

File tree

3 files changed

+6
-14
lines changed

3 files changed

+6
-14
lines changed

docs/changelog.rst

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
:orphan:
22

3-
Master
3+
2.8.0
44
======
55
- TwitchIO
66
- Additions
@@ -31,13 +31,6 @@ Master
3131
- ``Optional[T]`` / ``T | None``
3232
- ``Annotated[T, converter]`` (accessible through the ``typing_extensions`` module on older python versions)
3333

34-
- ext.commands
35-
- Additions
36-
- Added support for the following typing constructs in command signatures:
37-
- ``Union[A, B]`` / ``A | B``
38-
- ``Optional[T]`` / ``T | None``
39-
- ``Annotated[T, converter]`` (accessible through the ``typing_extensions`` module on older python versions)
40-
4134
- Docs
4235
- Added walkthrough for ext.commands
4336

docs/conf.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626

2727
on_rtd = os.environ.get("READTHEDOCS") == "True"
2828
project = "TwitchIO"
29-
copyright = "2022, TwitchIO"
30-
author = "TwitchIO"
29+
copyright = "2023, TwitchIO"
30+
author = "PythonistaGuild"
3131

3232
# The full version, including alpha/beta/rc tags
3333
release = ''
@@ -46,7 +46,8 @@
4646
"sphinxcontrib.asyncio",
4747
"sphinx.ext.intersphinx",
4848
"attributetable",
49-
"sphinxext.opengraph"
49+
"sphinxext.opengraph",
50+
"sphinx.ext.napoleon"
5051
]
5152

5253
# OpenGraph Meta Tags
@@ -93,8 +94,6 @@
9394
html_js_files = ["js/custom.js"]
9495

9596

96-
extensions.append("sphinx.ext.napoleon")
97-
9897
napoleon_use_rtype = False
9998
napoleon_google_docstring = False
10099
napoleon_numpy_docstring = True

twitchio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
__author__ = "TwitchIO, PythonistaGuild"
2929
__license__ = "MIT"
3030
__copyright__ = "Copyright 2017-2022 (c) TwitchIO"
31-
__version__ = "2.7.0"
31+
__version__ = "2.8.0"
3232

3333
from .client import Client
3434
from .user import *

0 commit comments

Comments
 (0)