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

v3 release prep #553

Merged
merged 4 commits into from
Oct 27, 2023
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
14 changes: 9 additions & 5 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,16 @@ project:
- Samir M
- Devin Bayer
- Mantas Mikulėnas
- zrose584
- @zrose584
- Michał Górny
- François Deppierraz
- Jasper Spaans
- Boni Lindsley
- Boni Lindsley
- Tobias Kölling
- pinoatrome
- Shoaib Ahmed

- @pinoatrome
- Shoaib Ahmed
- John Villalovos
- Claude Paroz
- Stefan Wójcik
- Andrzej Bartosiński
- @axoroll7
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ IMAPClient is an easy-to-use, Pythonic and complete IMAP client
library.

========================= ========================================
Current version 2.3.1
Current version 3.0.0
Supported Python versions 3.7 - 3.11
License New BSD
Project home https://github.com/mjs/imapclient/
Expand Down
8 changes: 5 additions & 3 deletions doc/src/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,9 @@ Authors

Release History
---------------
.. toctree::
:maxdepth: 1

releases
From release 3.0.0 onwards, release notes are maintained `on Github
<https://github.com/mjs/imapclient/releases>`_.

Release notes for older versions can be found :doc:`in these docs <releases>`.

4 changes: 3 additions & 1 deletion doc/src/releases.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
:tocdepth: 1
.. note::
From release 3.0.0 onwards, release notes are maintained
`on Github <https://github.com/mjs/imapclient/releases>`_.

===============
Version 2.3.0
Expand Down
2 changes: 1 addition & 1 deletion imapclient/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from typing import Tuple

version_info = (2, 3, 1, "final")
version_info = (3, 0, 0, "final")


def _imapclient_version_string(vinfo: Tuple[int, int, int, str]) -> str:
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3

# Copyright (c) 2017, Menno Smits
# Copyright (c) 2023, Menno Smits
# Released subject to the New BSD License
# Please see http://en.wikipedia.org/wiki/BSD_licenses

Expand Down Expand Up @@ -46,8 +46,6 @@
author_email=info["author_email"],
license="3-Clause BSD License",
url="https://github.com/mjs/imapclient/",
download_url="http://menno.io/projects/IMAPClient/IMAPClient-%s.zip"
% info["version"],
packages=["imapclient"],
package_data=dict(imapclient=["examples/*.py"]),
extras_require={"doc": doc_deps},
Expand Down