Skip to content

Commit 5db7671

Browse files
authored
Merge pull request #553 from mjs/300-prep
v3 release prep
2 parents 815b6fe + f9a13b3 commit 5db7671

File tree

6 files changed

+20
-14
lines changed

6 files changed

+20
-14
lines changed

AUTHORS.rst

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,16 @@ project:
3232
- Samir M
3333
- Devin Bayer
3434
- Mantas Mikulėnas
35-
- zrose584
35+
- @zrose584
3636
- Michał Górny
3737
- François Deppierraz
3838
- Jasper Spaans
39-
- Boni Lindsley
39+
- Boni Lindsley
4040
- Tobias Kölling
41-
- pinoatrome
42-
- Shoaib Ahmed
43-
41+
- @pinoatrome
42+
- Shoaib Ahmed
43+
- John Villalovos
44+
- Claude Paroz
45+
- Stefan Wójcik
46+
- Andrzej Bartosiński
47+
- @axoroll7

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ IMAPClient is an easy-to-use, Pythonic and complete IMAP client
44
library.
55

66
========================= ========================================
7-
Current version 2.3.1
7+
Current version 3.0.0
88
Supported Python versions 3.7 - 3.11
99
License New BSD
1010
Project home https://github.com/mjs/imapclient/

doc/src/index.rst

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,9 @@ Authors
123123

124124
Release History
125125
---------------
126-
.. toctree::
127-
:maxdepth: 1
128126

129-
releases
127+
From release 3.0.0 onwards, release notes are maintained `on Github
128+
<https://github.com/mjs/imapclient/releases>`_.
129+
130+
Release notes for older versions can be found :doc:`in these docs <releases>`.
131+

doc/src/releases.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
:tocdepth: 1
1+
.. note::
2+
From release 3.0.0 onwards, release notes are maintained
3+
`on Github <https://github.com/mjs/imapclient/releases>`_.
24

35
===============
46
Version 2.3.0

imapclient/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from typing import Tuple
66

7-
version_info = (2, 3, 1, "final")
7+
version_info = (3, 0, 0, "final")
88

99

1010
def _imapclient_version_string(vinfo: Tuple[int, int, int, str]) -> str:

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22

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

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

0 commit comments

Comments
 (0)