Skip to content

Commit c02d720

Browse files
authoredNov 15, 2021
4.0.0 (redis#1708)
* 4.0.0
1 parent 9235a72 commit c02d720

File tree

4 files changed

+7
-14
lines changed

4 files changed

+7
-14
lines changed
 

‎MANIFEST.in

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
include CHANGES
21
include INSTALL
32
include LICENSE
4-
include README.rst
3+
include README.md
54
exclude __pycache__
65
recursive-include tests *
76
recursive-exclude tests *.pyc

‎RELEASE

-9
This file was deleted.

‎docs/conf.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,15 @@
4646

4747
# General information about the project.
4848
project = "redis-py"
49-
copyright = "2021, Redis Inc."
49+
copyright = "2021, Redis Inc"
5050

5151
# The version info for the project you're documenting, acts as replacement for
5252
# |version| and |release|, also used in various other places throughout the
5353
# built documents.
5454
#
5555
# The short X.Y version.
56-
version = "4.0.9"
56+
version = "4.0"
57+
5758
# The full version, including alpha/beta/rc tags.
5859
release = "4.0.0"
5960

‎redis/__init__.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ def int_or_str(value):
3737
return value
3838

3939

40-
__version__ = '4.0.0rc2'
40+
__version__ = "4.0.0"
41+
42+
4143
VERSION = tuple(map(int_or_str, __version__.split('.')))
4244

4345
__all__ = [

0 commit comments

Comments
 (0)
Please sign in to comment.