Skip to content

Commit 87b054e

Browse files
committed
Bump version to 2.1.1
1 parent 5dba04e commit 87b054e

File tree

8 files changed

+16
-5
lines changed

8 files changed

+16
-5
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,7 @@ matrix:
1616
- python: 3.8
1717
env:
1818
- TOX_ENV=py38
19+
- python: 3.9
20+
env:
21+
- TOX_ENV=py39
1922
script: tox -e $TOX_ENV

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ include arabic_reshaper/arabic_reshaper.py
44
include arabic_reshaper/default-config.ini
55
include arabic_reshaper/letters.py
66
include arabic_reshaper/ligatures.py
7+
include arabic_reshaper/reshaper_config.py
78
include README.md
89
include LICENSE

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,10 @@ https://github.com/mpcabd/python-arabic-reshaper/tarball/master
248248

249249
## Version History
250250

251+
### 2.1.1
252+
253+
* Fix a warning. See #57. Thanks @fbernhart
254+
251255
### 2.1.0
252256

253257
* Added support for settings based on a TrueType® font

arabic_reshaper/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.1.0'
1+
__version__ = '2.1.1'

meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% set name = "arabic-reshaper" %}
22
{% set pypi_name = "arabic_reshaper" %}
3-
{% set version = "2.1.0" %}
3+
{% set version = "2.1.1" %}
44

55
package:
66
name: "{{ name|lower }}"

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
test_suite='arabic_reshaper.tests',
3838
include_package_data=True,
3939
keywords="arabic shaping reshaping reshaper",
40-
url="https://mpcabd.xyz/python-arabic-text-reshaper/",
40+
url="https://github.com/mpcabd/python-arabic-reshaper/",
4141
download_url=("https://github.com/mpcabd/"
4242
"python-arabic-reshaper/tarball/master"),
4343
classifiers=[
@@ -47,6 +47,7 @@
4747
"Programming Language :: Python :: 3.6",
4848
"Programming Language :: Python :: 3.7",
4949
"Programming Language :: Python :: 3.8",
50+
"Programming Language :: Python :: 3.9",
5051
"Topic :: Software Development :: Libraries :: Python Modules",
5152
],
5253
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27,py36,py37,py38
2+
envlist = py27,py36,py37,py38,py39
33

44
[testenv]
55
deps = pytest

upload-to-anaconda.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ conda config --add channels conda-forge
55
conda-build . --python 3.6
66
conda-build . -–python 3.7
77
conda-build . -–python 3.8
8+
conda-build . -–python 3.9
89
anaconda login
910
anaconda upload --user mpcabd /opt/conda/conda-bld/noarch/arabic-reshaper-*-py36_0.tar.bz2
1011
anaconda upload --user mpcabd /opt/conda/conda-bld/noarch/arabic-reshaper-*-py37_0.tar.bz2
11-
anaconda upload --user mpcabd /opt/conda/conda-bld/noarch/arabic-reshaper-*-py38_0.tar.bz2
12+
anaconda upload --user mpcabd /opt/conda/conda-bld/noarch/arabic-reshaper-*-py38_0.tar.bz2
13+
anaconda upload --user mpcabd /opt/conda/conda-bld/noarch/arabic-reshaper-*-py39_0.tar.bz2

0 commit comments

Comments
 (0)