Skip to content

Commit 70f350d

Browse files
committed
Bump version to 2.2.0
1 parent 88d43dc commit 70f350d

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66
[Version Guarantees](https://docs.pycord.dev/en/stable/version_guarantees.html) for more info).
77

88
## [Unreleased]
9+
10+
## [2.2.0] - 2022-10-02
911
### Added
1012
- New Guild Feature `INVITES_DISABLED` ([#1613](https://github.com/Pycord-Development/pycord/pull/1613))
1113
- `suppress` kwarg to `Messageable.send()` ([#1587](https://github.com/Pycord-Development/pycord/pull/1587))
@@ -269,7 +271,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
269271
### Fixed
270272
- Fix py3.10 UnionType checks issue. ([#1240](https://github.com/Pycord-Development/pycord/pull/1240))
271273

272-
[Unreleased]: https://github.com/Pycord-Development/pycord/compare/v2.1.3...HEAD
274+
[Unreleased]: https://github.com/Pycord-Development/pycord/compare/v2.2.0...HEAD
275+
[2.2.0]: https://github.com/Pycord-Development/pycord/compare/v2.1.3...v2.2.0
273276
[2.1.3]: https://github.com/Pycord-Development/pycord/compare/v2.1.2...v2.1.3
274277
[2.1.2]: https://github.com/Pycord-Development/pycord/compare/v2.1.1...v2.1.2
275278
[2.1.1]: https://github.com/Pycord-Development/pycord/compare/v2.1.0...v2.1.1

discord/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
__author__ = "Pycord Development"
1414
__license__ = "MIT"
1515
__copyright__ = "Copyright 2015-2021 Rapptz & Copyright 2021-present Pycord Development"
16-
__version__ = "2.1.3"
16+
__version__ = "2.2.0"
1717

1818
__path__ = __import__("pkgutil").extend_path(__path__, __name__)
1919

@@ -76,6 +76,6 @@ class VersionInfo(NamedTuple):
7676
serial: int
7777

7878

79-
version_info: VersionInfo = VersionInfo(major=2, minor=1, micro=3, releaselevel="final", serial=0)
79+
version_info: VersionInfo = VersionInfo(major=2, minor=2, micro=0, releaselevel="final", serial=0)
8080

8181
logging.getLogger(__name__).addHandler(logging.NullHandler())

0 commit comments

Comments
 (0)