15
0

- update to 1.4:

* support Vietnamese
  * Possible BC - Parsing call was moved from
    `ExpressionDescriptor.get_description` to
    `ExpressionDescriptor.__init__`  that means parsing
    exceptions are thrown when calling `ExpressionDescriptor`
    constructor and not when calling
    `ExpressionDescriptor.get_description`  modify your exception
    handling accordingly...
  * Possible BC - Option `throw_exception_on_parse_error`
    (boolean) was removed, code now works as if
    `throw_exception_on_parse_error=True` (default - always throw
    exceptions). Remove `throw_exception_on_parse_error` option
    from your code if you were using it.
  * Added missing spanish translation string
  * Add possibility to use custom .mo files, locally
  * Slovak translation
  * Fixes #31
  * Fixes #36
  * Added Korean support by @hanqyu
  * Added Persian support by @Davoodeh
  * Added Tamil support by @sankarhari
  * Added Japanese support by @tho-asterist
  * fixes unclosed open translation file by Rafael Reuber
  * various fixes around
  * Fix CI Build/Deploy on new version
  * Fixes some issues ( #14 #17 ) and some small code refactoring
  * Fixes #13
  * Fixes #10
  * Relase fixing issue #6

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cron-descriptor?expand=0&rev=9
This commit is contained in:
2023-08-09 07:34:11 +00:00
committed by Git OBS Bridge
parent 06bb0f1e4f
commit 4cacd04623
4 changed files with 40 additions and 5 deletions

View File

@@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Aug 9 07:28:16 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 1.4:
* support Vietnamese
* Possible BC - Parsing call was moved from
`ExpressionDescriptor.get_description` to
`ExpressionDescriptor.__init__` that means parsing
exceptions are thrown when calling `ExpressionDescriptor`
constructor and not when calling
`ExpressionDescriptor.get_description` modify your exception
handling accordingly...
* Possible BC - Option `throw_exception_on_parse_error`
(boolean) was removed, code now works as if
`throw_exception_on_parse_error=True` (default - always throw
exceptions). Remove `throw_exception_on_parse_error` option
from your code if you were using it.
* Added missing spanish translation string
* Add possibility to use custom .mo files, locally
* Slovak translation
* Fixes #31
* Fixes #36
* Added Korean support by @hanqyu
* Added Persian support by @Davoodeh
* Added Tamil support by @sankarhari
* Added Japanese support by @tho-asterist
* fixes unclosed open translation file by Rafael Reuber
* various fixes around
* Fix CI Build/Deploy on new version
* Fixes some issues ( #14 #17 ) and some small code refactoring
* Fixes #13
* Fixes #10
* Relase fixing issue #6
* Release solving issue #4
-------------------------------------------------------------------
Sat Dec 3 04:28:06 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>