Skip to content

Commit ac77e21

Browse files
authored
Merge pull request PyThaiNLP#249 from PyThaiNLP/fix_bug_2_0_7
PyThaiNLP 2.0.7
2 parents ed34e2c + 7e36f6f commit ac77e21

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ PyThaiNLP is a Python package for text processing and linguistic analysis, simil
1616

1717
**This is a document for development branch (post 2.0). Things will break.**
1818

19-
- The latest stable release is [2.0.5](https://github.com/PyThaiNLP/pythainlp/tree/master)
19+
- The latest stable release is [2.0.7](https://github.com/PyThaiNLP/pythainlp/tree/master)
2020
- PyThaiNLP 2 supports Python 3.6+. Some functions may work with older version of Python 3, but it is not well-tested and will not be supported. See [change log](https://github.com/PyThaiNLP/pythainlp/issues/118).
2121
- [Upgrading from 1.7](https://thainlp.org/pythainlp/docs/2.0/notes/pythainlp-1_7-2_0.html)
2222
- [Upgrade ThaiNER from 1.7](https://github.com/PyThaiNLP/pythainlp/wiki/Upgrade-ThaiNER-from-PyThaiNLP-1.7-to-PyThaiNLP-2.0)
@@ -106,7 +106,7 @@ PyThaiNLP เป็นไลบารีภาษาไพทอนเพื่
106106
107107
**เอกสารนี้สำหรับรุ่นพัฒนา อาจมีการเปลี่ยนแปลงได้ตลอด**
108108

109-
- รุ่นเสถียรล่าสุดคือรุ่น [2.0.5](https://github.com/PyThaiNLP/pythainlp/tree/master)
109+
- รุ่นเสถียรล่าสุดคือรุ่น [2.0.7](https://github.com/PyThaiNLP/pythainlp/tree/master)
110110
- PyThaiNLP 2 รองรับ Python 3.6 ขึ้นไป
111111
- ผู้ใช้ Python 2.7+ ยังสามารถใช้ PyThaiNLP 1.6 ได้
112112

pythainlp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
__version__ = "2.0.6"
3+
__version__ = "2.0.7"
44

55
thai_consonants = "กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรลวศษสหฬอฮ" # 44 chars
66
thai_vowels = "ฤฦะ\u0e31าำ\u0e34\u0e35\u0e36\u0e37\u0e38\u0e39เแโใไ\u0e45\u0e47" # 19

pythainlp/util/normalize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
("([่-๋])([ัิ-ื])", "\\2\\1"),
4141
("([่-๋])([ูุ])", "\\2\\1"),
4242
("ำ([่-๋])", "\\1ำ"),
43-
("(์)([ัิ-])", "\\2\\1"),
43+
("(์)([ัิ-])", "\\2\\1"),
4444
] # เก็บพวก พิมพ์ลำดับผิดหรือผิดแป้นแต่กลับแสดงผลถูกต้อง ให้ไปเป็นแป้นที่ถูกต้อง เช่น เ + เ ไปเป็น แ
4545

4646

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
setup(
3636
name="pythainlp",
37-
version="2.0.6",
37+
version="2.0.7",
3838
description="Thai Natural Language Processing library",
3939
long_description=readme,
4040
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)