From 841108ca6df3b973acc693cf44b5659d91a63241 Mon Sep 17 00:00:00 2001
From: Goldy <66202304+THEGOLDENPRO@users.noreply.github.com>
Date: Sun, 16 Jul 2023 00:33:59 +0100
Subject: [PATCH 1/2] added tiny installation guide and pypi badges to README
---
README.md | 27 +++++++++++++++++++++++++--
1 file changed, 25 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 63b3ac340..477c5285b 100644
--- a/README.md
+++ b/README.md
@@ -3,8 +3,11 @@
# Nextcore
- A low level Discord API wrapper.
-
+ A low-level Discord API wrapper.
+
+ [](https://pypi.org/project/nextcore "We're on pypi!")
+ [](https://pypi.org/project/nextcore "Supported python versions.")
+
### ✨ Features
@@ -29,6 +32,26 @@
+
+
+ # Install
+
+
+
+### 🎉 We're available on pypi!
+```sh
+# Pip
+pip install novacore
+
+# Poetry
+poetry add nextcore
+```
+⚡ Speed ups are also available with the optional ``[speed]`` package.
+```sh
+pip install nextcore[speed]
+```
+
+
# Examples
From 296e2e710bcff2c6ce9d786854474dea4bc38dbb Mon Sep 17 00:00:00 2001
From: Goldy <66202304+THEGOLDENPRO@users.noreply.github.com>
Date: Tue, 8 Apr 2025 14:57:49 +0100
Subject: [PATCH 2/2] chore: bump `discord-typings` version
---
pyproject.toml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/pyproject.toml b/pyproject.toml
index c5ea0406e..b9699d5ce 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "nextcore"
-version = "2.0.2"
+version = "2.0.3"
description = "A low level Discord API wrapper"
authors = ["tag-epic"]
license = "MIT"
@@ -38,7 +38,7 @@ types-frozendict = "^2.0.6" # Could we extend the version requirement
typing-extensions = "^4.1.1" # Same as above
orjson = {version = "^3.6.8", optional = true}
types-orjson = {version = "^3.6.2", optional = true}
-discord-typings = "^0.5.0"
+discord-typings = "^0.9.0"
[tool.poetry.group.dev.dependencies]
Sphinx = "^5.0.0"