Skip to content

Commit d58246c

Browse files
committed
PyThaiNLP v5.1.1
1 parent 6da01e7 commit d58246c

8 files changed

Lines changed: 12 additions & 12 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ Notable changes between versions.
1111
- For full release notes, see:
1212
<https://github.com/PyThaiNLP/pythainlp/releases>
1313
- For detailed commit changes, see:
14-
<https://github.com/PyThaiNLP/pythainlp/compare/v5.1.0...dev> (select tags to compare)
14+
<https://github.com/PyThaiNLP/pythainlp/compare/v5.1.1...dev> (select tags to compare)
1515

16-
## Version 5.1.0 -> Dev
16+
## Version 5.1.1 -> Dev
1717

1818
[WIP]
1919

20-
## Version 5.0.5 -> 5.1.0
20+
## Version 5.0.5 -> 5.1.1
2121

2222
- Add Thai Discourse Treebank postag #910
2323
- Add Thai Universal Dependency Treebank postag #916

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@ keywords:
4545
- "Thai language"
4646
- "Thai NLP"
4747
license: Apache-2.0
48-
version: 5.1.0
49-
date-released: "2025-02-25"
48+
version: 5.1.1
49+
date-released: "2025-03-31"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ pip install pythainlp
3030
3131
| Version | Description | Status |
3232
|:------:|:--:|:------:|
33-
| [5.1.0](https://github.com/PyThaiNLP/pythainlp/releases) | Stable | [Change Log](https://github.com/PyThaiNLP/pythainlp/issues/900) |
33+
| [5.1.1](https://github.com/PyThaiNLP/pythainlp/releases) | Stable | [Change Log](https://github.com/PyThaiNLP/pythainlp/issues/900) |
3434
| [`dev`](https://github.com/PyThaiNLP/pythainlp/tree/dev) | Release Candidate for 5.2 | [Change Log](https://github.com/PyThaiNLP/pythainlp/issues/1080) |
3535

3636
## Getting Started

README_TH.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ pip install pythainlp
2626
2727
| รุ่น | คำอธิบาย | สถานะ |
2828
|:------:|:--:|:------:|
29-
| [5.1.0](https://github.com/PyThaiNLP/pythainlp/releases) | Stable | [Change Log](https://github.com/PyThaiNLP/pythainlp/issues/900) |
29+
| [5.1.1](https://github.com/PyThaiNLP/pythainlp/releases) | Stable | [Change Log](https://github.com/PyThaiNLP/pythainlp/issues/900) |
3030
| [`dev`](https://github.com/PyThaiNLP/pythainlp/tree/dev) | Release Candidate for 5.2 | [Change Log](https://github.com/PyThaiNLP/pythainlp/issues/1080) |
3131

3232
ติดตามพวกเราบน [PyThaiNLP Facebook page](https://www.facebook.com/pythainlp/) เพื่อรับข่าวสารเพิ่มเติม

codemeta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"@type": "SoftwareSourceCode",
44
"name": "PyThaiNLP",
55
"description": "Thai Natural Language Processing in Python",
6-
"version": "5.1.0",
6+
"version": "5.1.1",
77
"author": [
88
{
99
"@type": "Person",

pythainlp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-FileCopyrightText: 2016-2025 PyThaiNLP Project
33
# SPDX-FileType: SOURCE
44
# SPDX-License-Identifier: Apache-2.0
5-
__version__ = "5.1.0"
5+
__version__ = "5.1.1"
66

77
thai_consonants = "กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรลวศษสหฬอฮ" # 44 chars
88

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 5.1.0
2+
current_version = 5.1.1
33
commit = True
44
tag = True
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@
150150

151151
setup(
152152
name="pythainlp",
153-
version="5.1.0",
153+
version="5.1.1",
154154
description="Thai Natural Language Processing library",
155155
long_description=LONG_DESC,
156156
long_description_content_type="text/markdown",
@@ -199,7 +199,7 @@
199199
],
200200
},
201201
project_urls={
202-
"Documentation": "https://pythainlp.org/docs/5.0/",
202+
"Documentation": "https://pythainlp.org/docs/5.1/",
203203
"Tutorials": "https://pythainlp.org/tutorials/",
204204
"Source Code": "https://github.com/PyThaiNLP/pythainlp",
205205
"Bug Tracker": "https://github.com/PyThaiNLP/pythainlp/issues",

0 commit comments

Comments
 (0)