Skip to content

Commit

Permalink
Release v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bharadwajyarlagadda committed Sep 16, 2016
1 parent edb030f commit 90ce22e
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 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.4.0-dev
----------
v0.4.0 (2016-09-15)
-------------------

- 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.4.0-dev'
__version__ = '0.4.0'
__author__ = 'Bharadwaj Yarlagadda'
__email__ = 'yarlagaddabharadwaj@gmail.com'
__license__ = 'MIT License'
2 changes: 1 addition & 1 deletion korona/html/tags/html.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Html(object):
content to conform to XHTML)
text (str): Specifies the html text. (As in <html>{text}</html>)
.. versionadded:: 0.4.0-dev
.. versionadded:: 0.4.0
"""
def __init__(self, manifest=None, xmlns=None, text=None):
# TODO: Add support for inner tags.
Expand Down
2 changes: 1 addition & 1 deletion korona/html/tags/iframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class IFrame(object):
<iframe>.
width (str): Specifies the width of an <iframe>.
.. versionadded:: 0.4.0-dev
.. versionadded:: 0.4.0
"""
def __init__(self,
align=None,
Expand Down
2 changes: 1 addition & 1 deletion korona/html/tags/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Img(object):
vspace (str): Specifies the whitespace on top and bottom of an image.
width (str): Specifies the width of an image.
.. versionadded:: 0.4.0-dev
.. versionadded:: 0.4.0
"""
def __init__(self,
align=None,
Expand Down
2 changes: 1 addition & 1 deletion korona/html/tags/italics.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class I(object):
Args:
text (str): Specifies the italics text. (As in <i>{text}</i>)
.. versionadded:: 0.4.0-dev
.. versionadded:: 0.4.0
"""
def __init__(self, text=None):
self.tag = 'i'
Expand Down

0 comments on commit 90ce22e

Please sign in to comment.