Skip to content

Commit

Permalink
Changed the version from v0.3.0-alpha to v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bharadwajyarlagadda committed Sep 5, 2016
1 parent 294c9d0 commit fe563c5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Changelog
=========

v0.3.0-alpha
------------
v0.3.0
------

- Added classes for building some of the tags:

Expand Down
2 changes: 1 addition & 1 deletion korona/__pkg__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
18 changes: 9 additions & 9 deletions korona/html/construct.py
Original file line number Diff line number Diff line change
Expand Up @@ -1175,7 +1175,7 @@ class H1(object):
align (str): Specifies the alignment of a heading.
text (str): Specifies the <h1> text. (As in <h1>{text}</h1>)
.. versionadded:: 0.3.0-alpha
.. versionadded:: 0.3.0
"""
def __init__(self, align=None, text=None):
self.tag = 'h1'
Expand All @@ -1196,7 +1196,7 @@ class H2(object):
align (str): Specifies the alignment of a heading.
text (str): Specifies the <h2> text. (As in <h2>{text}</h2>)
.. versionadded:: 0.3.0-alpha
.. versionadded:: 0.3.0
"""
def __init__(self, align=None, text=None):
self.tag = 'h2'
Expand All @@ -1217,7 +1217,7 @@ class H3(object):
align (str): Specifies the alignment of a heading.
text (str): Specifies the <h3> text. (As in <h3>{text}</h3>)
.. versionadded:: 0.3.0-alpha
.. versionadded:: 0.3.0
"""
def __init__(self, align=None, text=None):
self.tag = 'h3'
Expand All @@ -1238,7 +1238,7 @@ class H4(object):
align (str): Specifies the alignment of a heading.
text (str): Specifies the <h4> text. (As in <h4>{text}</h4>)
.. versionadded:: 0.3.0-alpha
.. versionadded:: 0.3.0
"""
def __init__(self, align=None, text=None):
self.tag = 'h4'
Expand All @@ -1259,7 +1259,7 @@ class H5(object):
align (str): Specifies the alignment of a heading.
text (str): Specifies the <h5> text. (As in <h5>{text}</h5>)
.. versionadded:: 0.3.0-alpha
.. versionadded:: 0.3.0
"""
def __init__(self, align=None, text=None):
self.tag = 'h5'
Expand All @@ -1280,7 +1280,7 @@ class H6(object):
align (str): Specifies the alignment of a heading.
text (str): Specifies the <h6> text. (As in <h6>{text}</h6>)
.. versionadded:: 0.3.0-alpha
.. versionadded:: 0.3.0
"""
def __init__(self, align=None, text=None):
self.tag = 'h6'
Expand All @@ -1300,7 +1300,7 @@ class Head(object):
Args:
text (str): Specifies the head text. (As in <head>{text}</head>)
.. 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
Expand All @@ -1319,7 +1319,7 @@ class Header(object):
Args:
text (str): Specifies the header text. (As in <header>{text}</header>)
.. versionadded:: 0.3.0-alpha
.. versionadded:: 0.3.0
"""
def __init__(self, text=None):
# TODO: Add support for inner tags.
Expand All @@ -1341,7 +1341,7 @@ class HR(object):
size (str): Specifies the height of a <hr> element.
width (str): Specifies the width of a <hr> element
.. versionadded:: 0.3.0-alpha
.. versionadded:: 0.3.0
"""
def __init__(self, align=None, noshade=False, size=None, width=None):
self.tag = 'hr'
Expand Down

0 comments on commit fe563c5

Please sign in to comment.