Bug fix: jeb_utils.utils.is_number could return True even if the base is 0 which is mathematically incorrect.

This commit is contained in:
2026-04-02 12:48:18 +02:00
parent 32ed782fef
commit 867e9a9c0c
3 changed files with 8 additions and 3 deletions
+5 -2
View File
@@ -77,11 +77,14 @@ pip install jeb-utils --index-url https://repo.jcloud-services.ddns.net/simple/
- `create_file_if_not_exists`: Creates a file if it does not exist.
## Changelog
### Version 0.2.2
- Bug fix: jeb_utils.utils.is_number could return `True` even if the base is `0` which is mathematically incorrect.
### Version 0.2.1
- Added feature for validating addresses.
- Add feature for validating addresses.
### Version 0.2.0
- Removed all the functions and classes that are now in jeb-server-utils.
- Remove all the functions and classes that are now in jeb-server-utils.
### Version 0.1.4
- Bug fix: Due to a refactoring, `jeb_utils.jebp_utils.unpack_fields` did not work.