Skip to content

Commit 9629380

Browse files
committed
version-2.5.0
1 parent aa18f5e commit 9629380

File tree

8 files changed

+42
-31
lines changed

8 files changed

+42
-31
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,16 @@ These changes are available on the `master` branch, but have not yet been releas
1212

1313
### Added
1414

15+
### Changed
16+
17+
### Removed
18+
19+
### Fixed
20+
21+
## [2.5.0] - 2023-08-06
22+
23+
### Added
24+
1525
- Added possibility to start bot via async context manager.
1626
([#1801](https://github.com/Pycord-Development/pycord/pull/1801))
1727
- Change default for all `name_localizations` & `description_localizations` attributes
@@ -690,7 +700,8 @@ These changes are available on the `master` branch, but have not yet been releas
690700
- Fix py3.10 UnionType checks issue.
691701
([#1240](https://github.com/Pycord-Development/pycord/pull/1240))
692702

693-
[unreleased]: https://github.com/Pycord-Development/pycord/compare/v2.4.1...HEAD
703+
[unreleased]: https://github.com/Pycord-Development/pycord/compare/v2.5.0...HEAD
704+
[2.4.2]: https://github.com/Pycord-Development/pycord/compare/v2.4.1...v2.5.0
694705
[2.4.1]: https://github.com/Pycord-Development/pycord/compare/v2.4.0...v2.4.1
695706
[2.4.0]: https://github.com/Pycord-Development/pycord/compare/v2.3.3...v2.4.0
696707
[2.3.3]: https://github.com/Pycord-Development/pycord/compare/v2.3.2...v2.3.3

README.rst

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ Pycord
44
.. image:: https://img.shields.io/discord/881207955029110855?label=discord&style=for-the-badge&logo=discord&color=5865F2&logoColor=white
55
:target: https://pycord.dev/discord
66
:alt: Discord server invite
7-
.. image:: https://img.shields.io/pypi/v/py-cord.svg?style=for-the-badge&logo=pypi&color=yellowgreen&logoColor=white
8-
:target: https://pypi.python.org/pypi/py-cord
7+
.. image:: https://img.shields.io/pypi/v/py-cord-dev.svg?style=for-the-badge&logo=pypi&color=yellowgreen&logoColor=white
8+
:target: https://pypi.python.org/pypi/py-cord-dev
99
:alt: PyPI version info
10-
.. image:: https://img.shields.io/pypi/pyversions/py-cord.svg?style=for-the-badge&logo=python&logoColor=white
11-
:target: https://pypi.python.org/pypi/py-cord
10+
.. image:: https://img.shields.io/pypi/pyversions/py-cord-dev.svg?style=for-the-badge&logo=python&logoColor=white
11+
:target: https://pypi.python.org/pypi/py-cord-dev
1212
:alt: PyPI supported Python versions
13-
.. image:: https://img.shields.io/pypi/dm/py-cord?color=blueviolet&logo=pypi&logoColor=white&style=for-the-badge
14-
:target: https://pypi.python.org/pypi/py-cord
13+
.. image:: https://img.shields.io/pypi/dm/py-cord-dev?color=blueviolet&logo=pypi&logoColor=white&style=for-the-badge
14+
:target: https://pypi.python.org/pypi/py-cord-dev
1515
:alt: PyPI downloads
1616
.. image:: https://img.shields.io/github/v/release/Pycord-Development/pycord?include_prereleases&label=Latest%20Release&logo=github&sort=semver&style=for-the-badge&logoColor=white
1717
:target: https://github.com/Pycord-Development/pycord/releases
@@ -37,29 +37,29 @@ To install the library without full voice support, run the following command:
3737
.. code:: sh
3838
3939
# Linux/macOS
40-
python3 -m pip install -U py-cord
40+
python3 -m pip install -U py-cord-dev
4141
4242
# Windows
43-
py -3 -m pip install -U py-cord
43+
py -3 -m pip install -U py-cord-dev
4444
4545
Otherwise, to get full voice support, run the following command:
4646

4747
.. code:: sh
4848
4949
# Linux/macOS
50-
python3 -m pip install -U "py-cord[voice]"
50+
python3 -m pip install -U "py-cord-dev[voice]"
5151
5252
# Windows
53-
py -3 -m pip install -U py-cord[voice]
53+
py -3 -m pip install -U py-cord-dev[voice]
5454
5555
To install additional packages for speedup, run the following command:
5656

5757
.. code:: sh
5858
5959
# Linux/macOS
60-
python3 -m pip install -U "py-cord[speed]"
60+
python3 -m pip install -U "py-cord-dev[speed]"
6161
# Windows
62-
py -3 -m pip install -U py-cord[speed]
62+
py -3 -m pip install -U py-cord-dev[speed]
6363
6464
6565
To install the development version, do the following:

discord/__main__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ def show_version() -> None:
4444

4545
version_info = discord.version_info
4646
entries.append(
47-
"- py-cord v{0.major}.{0.minor}.{0.micro}-{0.releaselevel}".format(version_info)
47+
"- py-cord-dev v{0.major}.{0.minor}.{0.micro}-{0.releaselevel}".format(version_info)
4848
)
4949
if version_info.releaselevel != "final":
50-
pkg = pkg_resources.get_distribution("py-cord")
50+
pkg = pkg_resources.get_distribution("py-cord-dev")
5151
if pkg:
52-
entries.append(f" - py-cord pkg_resources: v{pkg.version}")
52+
entries.append(f" - py-cord-dev pkg_resources: v{pkg.version}")
5353

5454
entries.append(f"- aiohttp v{aiohttp.__version__}")
5555
uname = platform.uname()

discord/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
from .utils import deprecated
3939

4040
try:
41-
__version__ = version("py-cord")
41+
__version__ = version("py-cord-dev")
4242
except PackageNotFoundError:
4343
# Package is not installed
4444
try:

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def write_new():
142142
#
143143

144144
# The full version, including alpha/beta/rc tags.
145-
release = get_version("py-cord")
145+
release = get_version("py-cord-dev")
146146

147147
# The short X.Y version.
148148
version = ".".join(release.split(".")[:2])

docs/installing.rst

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,35 +26,35 @@ Installing
2626

2727
For new features in upcoming versions, you will need to install the pre-release until a stable version is released. ::
2828

29-
python3 -m pip install -U py-cord --pre
29+
python3 -m pip install -U py-cord-dev --pre
3030

3131
For Windows users, this command should be used to install the pre-release: ::
3232

33-
py -3 -m pip install -U py-cord --pre
33+
py -3 -m pip install -U py-cord-dev --pre
3434

3535
You can get the library directly from PyPI: ::
3636

37-
python3 -m pip install -U py-cord
37+
python3 -m pip install -U py-cord-dev
3838

3939
If you are using Windows, then the following should be used instead: ::
4040

41-
py -3 -m pip install -U py-cord
41+
py -3 -m pip install -U py-cord-dev
4242

4343

44-
To install additional packages for speedup, you should use ``py-cord[speed]`` instead of ``py-cord``, e.g.
44+
To install additional packages for speedup, you should use ``py-cord-dev[speed]`` instead of ``py-cord-dev``, e.g.
4545

4646
.. code:: sh
4747
4848
# Linux/macOS
49-
python3 -m pip install -U "py-cord[speed]"
49+
python3 -m pip install -U "py-cord-dev[speed]"
5050
5151
# Windows
52-
py -3 -m pip install -U py-cord[speed]
52+
py -3 -m pip install -U py-cord-dev[speed]
5353
5454
55-
To get voice support, you should use ``py-cord[voice]`` instead of ``py-cord``, e.g. ::
55+
To get voice support, you should use ``py-cord-dev[voice]`` instead of ``py-cord-dev``, e.g. ::
5656

57-
python3 -m pip install -U py-cord[voice]
57+
python3 -m pip install -U py-cord-dev[voice]
5858

5959
On Linux environments, installing voice requires getting the following dependencies:
6060

@@ -105,7 +105,7 @@ However, for the quick and dirty:
105105

106106
.. code-block:: shell
107107
108-
$ pip install -U py-cord
108+
$ pip install -U py-cord-dev
109109
110110
Congratulations. You now have a virtual environment all set up.
111111

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ requires = [
66
build-backend = "setuptools.build_meta"
77

88
[project]
9-
name = "py-cord"
9+
name = "py-cord-dev"
1010
authors = [
1111
{name = "Pycord Development"}
1212
]
13-
description = "A Python wrapper for the Discord API"
13+
description = "A Python wrapper for the Discord API. Temporary release"
1414
readme = "README.rst"
1515
requires-python = ">=3.8"
1616
license = {text = "MIT"}

requirements/docs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ sphinxcontrib-websupport==1.2.4
44
myst-parser==1.0.0
55
sphinxext-opengraph==0.8.2
66
sphinx-copybutton==0.5.2
7-
furo@ git+https://github.com/pradyunsg/furo@193643f
7+
furo==2022.12.7
88
sphinx-autodoc-typehints==1.23.0

0 commit comments

Comments
 (0)