-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare for the next release of Maha (v0.3.0) (#93)
* prepare release * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * No reviewers * Update date Co-authored-by: TRoboto <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Mohammad Al-Fetyani <[email protected]>
- Loading branch information
1 parent
13830e0
commit d18f69f
Showing
4 changed files
with
84 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,5 @@ Changelog | |
|
||
changelog/0.1.1-changelog | ||
changelog/0.2.0-changelog | ||
changelog/0.3.0-changelog | ||
.. next-changelog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
****** | ||
v0.3.0 | ||
****** | ||
|
||
:Date: April 04, 2022 | ||
|
||
Contributors | ||
============ | ||
|
||
A total of 1 people contributed to this | ||
release. People with a '+' by their names authored a patch for the first | ||
time. | ||
|
||
* Mohammad Al-Fetyani | ||
|
||
Pull requests merged | ||
==================== | ||
|
||
A total of 13 pull requests were merged for this release. | ||
|
||
Breaking changes | ||
---------------- | ||
|
||
* `#80 <https://github.com/TRoboto/Maha/pull/80>`__: Deprecate and remove `datasets` module and host datasets on Hugging Face instead | ||
|
||
|
||
Highlights | ||
---------- | ||
|
||
* `#92 <https://github.com/TRoboto/Maha/pull/92>`__: Add numbers to text functionality | ||
|
||
|
||
* `#86 <https://github.com/TRoboto/Maha/pull/86>`__: Time: Add the ability to parse Hijri dates | ||
|
||
|
||
* `#75 <https://github.com/TRoboto/Maha/pull/75>`__: Add the ability to parse time intervals | ||
|
||
|
||
New features | ||
------------ | ||
|
||
* `#90 <https://github.com/TRoboto/Maha/pull/90>`__: Numeral: Add multiplier fraction patterns | ||
|
||
|
||
* `#85 <https://github.com/TRoboto/Maha/pull/85>`__: Ordinal: Add support to `بعد` in ordinal parsing | ||
|
||
|
||
* `#83 <https://github.com/TRoboto/Maha/pull/83>`__: Numeral: Add support for hierarchical parsing | ||
|
||
|
||
Enhancements | ||
------------ | ||
|
||
* `#78 <https://github.com/TRoboto/Maha/pull/78>`__: Improved decimal parsing to cover all numeric values up to trillions | ||
|
||
|
||
* `#79 <https://github.com/TRoboto/Maha/pull/79>`__: Improve start of week parsing and make its value dynamic | ||
|
||
|
||
* `#81 <https://github.com/TRoboto/Maha/pull/81>`__: Simplify :class:`~.TimeInterval` to include `start`/`end` instead of `from_time`/`to_time` | ||
|
||
|
||
Fixed bugs | ||
---------- | ||
|
||
* `#88 <https://github.com/TRoboto/Maha/pull/88>`__: Fix tests not passing when order changes due to monkeypatching | ||
|
||
|
||
Code quality improvements and similar refactors | ||
----------------------------------------------- | ||
|
||
* `#89 <https://github.com/TRoboto/Maha/pull/89>`__: Add pyupgrade to pre-commit and upgrade to future-style type annotations | ||
|
||
|
||
Unclassified changes | ||
-------------------- | ||
|
||
* `#84 <https://github.com/TRoboto/Maha/pull/84>`__: Add LGTM code quality badge to README file | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "mahad" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
description = "An Arabic text processing library intended for use in NLP applications." | ||
authors = ["Mohammad Al-Fetyani <[email protected]>"] | ||
license = "BSD-3-Clause" | ||
|