Skip to content

Commit

Permalink
4.0.0 (#1708)
Browse files Browse the repository at this point in the history
* 4.0.0
  • Loading branch information
chayim authored Nov 15, 2021
1 parent 9235a72 commit c02d720
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 14 deletions.
3 changes: 1 addition & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
include CHANGES
include INSTALL
include LICENSE
include README.rst
include README.md
exclude __pycache__
recursive-include tests *
recursive-exclude tests *.pyc
9 changes: 0 additions & 9 deletions RELEASE

This file was deleted.

5 changes: 3 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,15 @@

# General information about the project.
project = "redis-py"
copyright = "2021, Redis Inc."
copyright = "2021, Redis Inc"

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = "4.0.9"
version = "4.0"

# The full version, including alpha/beta/rc tags.
release = "4.0.0"

Expand Down
4 changes: 3 additions & 1 deletion redis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ def int_or_str(value):
return value


__version__ = '4.0.0rc2'
__version__ = "4.0.0"


VERSION = tuple(map(int_or_str, __version__.split('.')))

__all__ = [
Expand Down

0 comments on commit c02d720

Please sign in to comment.