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

Commit

Permalink
Hotfix 0.2.1: install localization files
Browse files Browse the repository at this point in the history
  • Loading branch information
Igor Kalnitsky committed Jan 15, 2014
1 parent d4be97d commit 83becc6
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
10 changes: 9 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,18 @@ Em Changelog
Here you can see the full list of changes between each Em release.


Version 0.2.1
`````````````

Released on January 15, 2014.

- Install localization files with `./setup.py install`.


Version 0.2
```````````

(release date to be anounced)
Released on January 14, 2014.

- Improve processing of /dev/stdin input in Python 2.x.
- Add ``--line-mode`` option to highlight entire line.
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@
# built documents.
#
# The short X.Y version.
version = '0.2'
version = '0.2.1'
# The full version, including alpha/beta/rc tags.
release = '0.2'
release = '0.2.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion em/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import argparse


__version__ = '0.2'
__version__ = '0.2.1'


#: True if Python 2.x interpreter was detected.
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
Links
`````
* `documentation <http://em.readthedocs.org/>
* `source code <https://github.com/ikalnitsky/em>
* `documentation <http://em.readthedocs.org/>`_
* `source code <https://github.com/ikalnitsky/em>`_
"""
from setuptools import setup
Expand All @@ -38,6 +38,7 @@
author_email='[email protected]',
description='Highlight some PATTERN in terminal\'s STDOUT',
long_description=__doc__,
include_package_data=True,
packages=[
'em',
],
Expand Down

0 comments on commit 83becc6

Please sign in to comment.