Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ body:
label: XNum version
description: Which version of XNum are you using?
options:
- XNum 1.4
- XNum 1.3
- XNum 1.2
- XNum 1.1
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [1.4] - 2026-02-16
### Added
- Ahom numeral system
- Warang Citi numeral system
Expand Down Expand Up @@ -143,7 +144,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Bengali numeral system


[Unreleased]: https://github.com/openscilab/xnum/compare/v1.3...dev
[Unreleased]: https://github.com/openscilab/xnum/compare/v1.4...dev
[1.4]: https://github.com/openscilab/xnum/compare/v1.3...v1.4
[1.3]: https://github.com/openscilab/xnum/compare/v1.2...v1.3
[1.2]: https://github.com/openscilab/xnum/compare/v1.1...v1.2
[1.1]: https://github.com/openscilab/xnum/compare/v1.0...v1.1
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ It can automatically detect mixed numeral formats in a piece of text and convert

### PyPI
- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
- Run `pip install xnum==1.3`
- Run `pip install xnum==1.4`
### Source code
- Download [Version 1.3](https://github.com/openscilab/xnum/archive/v1.3.zip) or [Latest Source](https://github.com/openscilab/xnum/archive/dev.zip)
- Download [Version 1.4](https://github.com/openscilab/xnum/archive/v1.4.zip) or [Latest Source](https://github.com/openscilab/xnum/archive/dev.zip)
- Run `pip install .`

## Usage
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

| Version | Supported |
| ------------- | ------------------ |
| 1.3 | :white_check_mark: |
| < 1.3 | :x: |
| 1.4 | :white_check_mark: |
| < 1.4 | :x: |

## Reporting a vulnerability

Expand Down
2 changes: 1 addition & 1 deletion otherfiles/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "xnum" %}
{% set version = "1.3" %}
{% set version = "1.4" %}

package:
name: {{ name|lower }}
Expand Down
2 changes: 1 addition & 1 deletion otherfiles/version_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import sys
import codecs
Failed = 0
XNUM_VERSION = "1.3"
XNUM_VERSION = "1.4"


SETUP_ITEMS = [
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ def read_description() -> str:
name='xnum',
packages=[
'xnum', ],
version='1.3',
version='1.4',
description='XNum: Universal Numeral System Converter',
long_description=read_description(),
long_description_content_type='text/markdown',
author='XNum Development Team',
author_email='xnum@openscilab.com',
url='https://github.com/openscilab/xnum',
download_url='https://github.com/openscilab/xnum/tarball/v1.3',
download_url='https://github.com/openscilab/xnum/tarball/v1.4',
keywords="convert numeral number numeral-system digits",
project_urls={
'Source': 'https://github.com/openscilab/xnum',
Expand Down
2 changes: 1 addition & 1 deletion xnum/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""XNum parameters and constants."""
from enum import Enum

XNUM_VERSION = "1.3"
XNUM_VERSION = "1.4"

ENGLISH_DIGITS = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']
ENGLISH_FULLWIDTH_DIGITS = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']
Expand Down