Skip to content

Commit

Permalink
Version 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
tonioo committed May 2, 2016
1 parent c9109c0 commit e511ffb
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
# The short X.Y version.
version = '1.0'
# The full version, including alpha/beta/rc tags.
release = '1.0.3'
release = '1.0.4'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
1 change: 1 addition & 0 deletions modoboa_webmail/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "1.0.4"
4 changes: 3 additions & 1 deletion modoboa_webmail/modo_extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,13 @@
from modoboa.core.extensions import ModoExtension, exts_pool
from modoboa.lib import parameters

from . import __version__


class Webmail(ModoExtension):
name = "modoboa_webmail"
label = "Webmail"
version = "1.0.3"
version = __version__
description = ugettext_lazy("Simple IMAP webmail")
needs_media = True
available_for_topredirection = True
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
import os
from setuptools import setup, find_packages

from modoboa_webmail import __version__

ROOT = os.path.dirname(__file__)


Expand Down Expand Up @@ -57,7 +59,7 @@ def read(fname):

setup(
name="modoboa-webmail",
version='1.0.3',
version=__version__,
url='http://modoboa.org/',
license='MIT',
description="The webmail of Modoboa",
Expand Down

0 comments on commit e511ffb

Please sign in to comment.