aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2022-02-24 18:21:20 +0000
committerGravatar Chris Lovering <[email protected]>2022-02-24 20:07:38 +0000
commit7ddf28aed84cd5dbe5a7e8b530d04b88f30e2483 (patch)
treedb5293c101a8fd204cb2afd185c9856420c1ae87
parentMigrate to using disnake over Discord.py 2.0a0 (diff)
Custom css to de-bold index page
Also bump pyproject version to 2.0.0 to match changelog
-rw-r--r--docs/_static/index.css3
-rw-r--r--docs/conf.py1
-rw-r--r--docs/index.rst5
-rw-r--r--poetry.lock2
-rw-r--r--pyproject.toml2
5 files changed, 11 insertions, 2 deletions
diff --git a/docs/_static/index.css b/docs/_static/index.css
new file mode 100644
index 00000000..54f3f771
--- /dev/null
+++ b/docs/_static/index.css
@@ -0,0 +1,3 @@
+h1 {
+ font-weight: 300;
+}
diff --git a/docs/conf.py b/docs/conf.py
index 73de7daf..52eaf60a 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -83,6 +83,7 @@ html_logo = "https://raw.githubusercontent.com/python-discord/branding/main/logo
html_favicon = html_logo
html_css_files = [
+ "index.css",
"logo.css",
]
diff --git a/docs/index.rst b/docs/index.rst
index 81975f35..98dcd611 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -13,6 +13,11 @@ Reference
output/botcore
+.. toctree::
+ :caption: Other:
+
+ Changelog <https://github.com/python-discord/bot-core/blob/main/CHANGELOG.md>
+
Extras
==================
diff --git a/poetry.lock b/poetry.lock
index ff72a744..bdd1dca2 100644
--- a/poetry.lock
+++ b/poetry.lock
@@ -932,7 +932,7 @@ testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-
[metadata]
lock-version = "1.1"
python-versions = "3.9.*"
-content-hash = "b2585f0b1be17d986b433b20045d09a78f4262de870d8265f51a69c929955637"
+content-hash = "42f5eb3043cb7978b883467bd251b0670265b20676592f9676a462b5a1954847"
[metadata.files]
aiohttp = [
diff --git a/pyproject.toml b/pyproject.toml
index 2d67ff34..34366568 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "bot-core"
-version = "1.3.0"
+version = "2.0.0"
description = "Bot-Core provides the core functionality and utilities for the bots of the Python Discord community."
authors = ["Python Discord <[email protected]>"]
license = "MIT"