Skip to content
This repository has been archived by the owner on Nov 10, 2020. It is now read-only.

Commit

Permalink
bump v0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nitely committed Nov 19, 2015
1 parent d3ebdea commit 64d2192
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
0.2
---

* Adds Emoji.as_map() function.

0.1
---

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def render(e):
# This assumes `woman-kissing-man.svg` is missing
emoji_unicode.replace(
u'\U0001f469\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f468',
lambda e: render(e)
render
)
# <img src="1f469.svg" alt="\U0001f469"><img src="2764.svg" alt="\u2764"> ...
```
Expand Down
2 changes: 1 addition & 1 deletion emoji_unicode/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from .parser import replace, normalize
from .models import Emoji

__version__ = '0.1'
__version__ = '0.2'

__all__ = [
'RE_PATTERN_TEMPLATE',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

setup(
name='emoji-unicode',
version='0.1',
version='0.2',
description='Replace unicode emojis by its corresponding image representation. Supports Unicode 8 standard.',
author='Esteban Castro Borsani',
author_email='ecastroborsani@gmail.com',
Expand Down

0 comments on commit 64d2192

Please sign in to comment.