From fe563c576f4abb7e8b47afb68087aaa0ff992750 Mon Sep 17 00:00:00 2001 From: bharadwajyarlagadda Date: Mon, 5 Sep 2016 00:10:43 -0400 Subject: [PATCH] Changed the version from v0.3.0-alpha to v0.3.0 --- CHANGELOG.rst | 4 ++-- korona/__pkg__.py | 2 +- korona/html/construct.py | 18 +++++++++--------- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b00ca74..c224c44 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,8 +1,8 @@ Changelog ========= -v0.3.0-alpha ------------- +v0.3.0 +------ - Added classes for building some of the tags: diff --git a/korona/__pkg__.py b/korona/__pkg__.py index 59392cb..9e51564 100644 --- a/korona/__pkg__.py +++ b/korona/__pkg__.py @@ -5,7 +5,7 @@ __package_name__ = 'korona' __description__ = 'Package for building html pages' __url__ = 'https://github.com/bharadwajyarlagadda/korona' -__version__ = '0.3.0-alpha' +__version__ = '0.3.0' __author__ = 'Bharadwaj Yarlagadda' __email__ = 'yarlagaddabharadwaj@gmail.com' __license__ = 'MIT License' diff --git a/korona/html/construct.py b/korona/html/construct.py index 7393b7d..49cb94a 100644 --- a/korona/html/construct.py +++ b/korona/html/construct.py @@ -1175,7 +1175,7 @@ class H1(object): align (str): Specifies the alignment of a heading. text (str): Specifies the

text. (As in

{text}

) - .. versionadded:: 0.3.0-alpha + .. versionadded:: 0.3.0 """ def __init__(self, align=None, text=None): self.tag = 'h1' @@ -1196,7 +1196,7 @@ class H2(object): align (str): Specifies the alignment of a heading. text (str): Specifies the

text. (As in

{text}

) - .. versionadded:: 0.3.0-alpha + .. versionadded:: 0.3.0 """ def __init__(self, align=None, text=None): self.tag = 'h2' @@ -1217,7 +1217,7 @@ class H3(object): align (str): Specifies the alignment of a heading. text (str): Specifies the

text. (As in

{text}

) - .. versionadded:: 0.3.0-alpha + .. versionadded:: 0.3.0 """ def __init__(self, align=None, text=None): self.tag = 'h3' @@ -1238,7 +1238,7 @@ class H4(object): align (str): Specifies the alignment of a heading. text (str): Specifies the

text. (As in

{text}

) - .. versionadded:: 0.3.0-alpha + .. versionadded:: 0.3.0 """ def __init__(self, align=None, text=None): self.tag = 'h4' @@ -1259,7 +1259,7 @@ class H5(object): align (str): Specifies the alignment of a heading. text (str): Specifies the
text. (As in
{text}
) - .. versionadded:: 0.3.0-alpha + .. versionadded:: 0.3.0 """ def __init__(self, align=None, text=None): self.tag = 'h5' @@ -1280,7 +1280,7 @@ class H6(object): align (str): Specifies the alignment of a heading. text (str): Specifies the
text. (As in
{text}
) - .. versionadded:: 0.3.0-alpha + .. versionadded:: 0.3.0 """ def __init__(self, align=None, text=None): self.tag = 'h6' @@ -1300,7 +1300,7 @@ class Head(object): Args: text (str): Specifies the head text. (As in {text}) - .. versionadded:: 0.3.0-alpha + .. versionadded:: 0.3.0 """ def __init__(self, text=None): # TODO: Add the ability to validate which inner tags can go into the @@ -1319,7 +1319,7 @@ class Header(object): Args: text (str): Specifies the header text. (As in
{text}
) - .. versionadded:: 0.3.0-alpha + .. versionadded:: 0.3.0 """ def __init__(self, text=None): # TODO: Add support for inner tags. @@ -1341,7 +1341,7 @@ class HR(object): size (str): Specifies the height of a
element. width (str): Specifies the width of a
element - .. versionadded:: 0.3.0-alpha + .. versionadded:: 0.3.0 """ def __init__(self, align=None, noshade=False, size=None, width=None): self.tag = 'hr'