Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update readme and changelog #2493

Merged
merged 8 commits into from
Jul 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ possible (see our [Version Guarantees] for more info).

These changes are available on the `master` branch, but have not yet been released.

## [2.6.0] - 2024-07-09

### Added

- Added `banner` parameter to `ClientUser.edit`.
Expand Down Expand Up @@ -68,7 +70,7 @@ These changes are available on the `master` branch, but have not yet been releas
([#2448](https://github.com/Pycord-Development/pycord/pull/2448))
- Fixed missing `application_id` in `Entitlement.delete`.
([#2458](https://github.com/Pycord-Development/pycord/pull/2458))
- Fixed issues with enums as `Option` types with long descriptions or too many values
- Fixed issues with enums as `Option` types with long descriptions or too many values.
([#2463](https://github.com/Pycord-Development/pycord/pull/2463))
- Fixed many inaccurate type hints throughout the library.
([#2457](https://github.com/Pycord-Development/pycord/pull/2457))
Expand Down Expand Up @@ -101,6 +103,8 @@ These changes are available on the `master` branch, but have not yet been releas
- Replaced `Client.fetch_entitlements` with `Client.entitlements`, which returns an
`EntitlementIterator`.
([#2490](https://github.com/Pycord-Development/pycord/pull/2490))
- Changed the error message that appears when attempting to add a subcommand group to a
subcommand group. ([#2275](https://github.com/Pycord-Development/pycord/pull/2275))

### Removed

Expand All @@ -111,7 +115,7 @@ These changes are available on the `master` branch, but have not yet been releas
and `after` parameters.
([#2371](https://github.com/Pycord-Development/pycord/pull/2371))
- Removed the `vanity_code` parameter from `Guild.edit`.
([#2480](https://github.com/Pycord-Development/pycord/pull/2480))
([#2491](https://github.com/Pycord-Development/pycord/pull/2491))

## [2.5.0] - 2024-03-02

Expand Down Expand Up @@ -239,8 +243,6 @@ These changes are available on the `master` branch, but have not yet been releas
([#2170](https://github.com/Pycord-Development/pycord/pull/2170))
- `BridgeOption` must now be used for arguments in bridge commands.
([#2252](https://github.com/Pycord-Development/pycord/pull/2252))
- Changed the error message that appears when attempting to add a subcommand group to a
subcommand group. ([#2275](https://github.com/Pycord-Development/pycord/pull/2275))

### Removed

Expand Down Expand Up @@ -885,7 +887,8 @@ These changes are available on the `master` branch, but have not yet been releas
- Fix py3.10 UnionType checks issue.
([#1240](https://github.com/Pycord-Development/pycord/pull/1240))

[unreleased]: https://github.com/Pycord-Development/pycord/compare/v2.5.0...HEAD
[unreleased]: https://github.com/Pycord-Development/pycord/compare/v2.6.0...HEAD
[2.6.0]: https://github.com/Pycord-Development/pycord/compare/v2.5.0...2.6.0
[2.5.0]: https://github.com/Pycord-Development/pycord/compare/v2.4.1...v2.5.0
[2.4.1]: https://github.com/Pycord-Development/pycord/compare/v2.4.0...v2.4.1
[2.4.0]: https://github.com/Pycord-Development/pycord/compare/v2.3.3...v2.4.0
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Key Features
- Modern Pythonic API using ``async`` and ``await``.
- Proper rate limit handling.
- Optimised for both speed and memory usage.
- Full Application Command Support
- Full application API support.

Installing
----------
Expand Down
Loading