Skip to content

Commit

Permalink
0.80.2 version
Browse files Browse the repository at this point in the history
  • Loading branch information
M3te0r committed Apr 28, 2022
1 parent f1ada40 commit bb2758f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 5 additions & 2 deletions ikaaro/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,11 @@


# The version
__version__ = get_version()

__version__ = "0.80.2"
__version_info__ = tuple(
int(num) if num.isdigit() else num
for num in __version__.replace("-", ".", 1).split(".")
)

# Import required modules
from . import users
Expand Down
1 change: 1 addition & 0 deletions setup.conf
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ url = "http://www.hforge.org/ikaaro"
author_name = "J. David Ibáñez"
author_email = "[email protected]"
license = "GNU General Public License (GPL)"
version=0.80.2

# Longer description
description = "A Content Management System built on Python & itools"
Expand Down

0 comments on commit bb2758f

Please sign in to comment.