Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
mpcabd committed Mar 23, 2021
1 parent 47e6583 commit a981806
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ https://github.com/mpcabd/python-arabic-reshaper/tarball/master

## Version History

### 2.1.2
### 2.1.3

* Remove dependency on `__version__.py` and `default-config.ini` files, as they were causing problems for people who package their apps using pyinstaller or buildozer.

Expand Down
2 changes: 1 addition & 1 deletion arabic_reshaper/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
ENABLE_ALL_LIGATURES)


__version__ = '2.1.2'
__version__ = '2.1.3'
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,16 @@

import os

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setup(
name="arabic_reshaper",
description=("Reconstruct Arabic sentences to be used in"
" applications that don't support Arabic"),
version='2.1.2',
long_description=long_description,
long_description_content_type="text/markdown",
version='2.1.3',
platforms="ALL",
license="MIT",
packages=['arabic_reshaper'],
Expand All @@ -25,7 +30,6 @@
maintainer="Abdullah Diab",
maintainer_email="mpcabd@gmail.com",
package_dir={'arabic_reshaper': 'arabic_reshaper'},
package_data={'arabic_reshaper': ['default-config.ini']},
test_suite='arabic_reshaper.tests',
include_package_data=True,
keywords="arabic shaping reshaping reshaper",
Expand Down

0 comments on commit a981806

Please sign in to comment.