- update to 0.2.12:

- More C90 (ANSI C) compliance.
  - Prevent some compiling conflicts with other sources.
  - Fix miscellaneous compiler warnings.
  - Prevent trimming on extremely long dictionary path names.
  - Detect iconv() error more correctly in trietool.
  - Clarify package description that search time is O(m), where m is
    key length, not O(1), while still claiming that it's independent
    of database size.
  - Fix trie_state_get_data() on a prefix key.
  - Fix reported segfault on full-range alpha map.

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libdatrie?expand=0&rev=25
This commit is contained in:
2020-08-25 21:46:39 +00:00
committed by Git OBS Bridge
parent 35ad40e277
commit 0390a57a27
4 changed files with 27 additions and 11 deletions

View File

@@ -1,3 +1,18 @@
-------------------------------------------------------------------
Tue Aug 25 21:45:14 UTC 2020 - Dirk Mueller <dmueller@suse.com>
- update to 0.2.12:
- More C90 (ANSI C) compliance.
- Prevent some compiling conflicts with other sources.
- Fix miscellaneous compiler warnings.
- Prevent trimming on extremely long dictionary path names.
- Detect iconv() error more correctly in trietool.
- Clarify package description that search time is O(m), where m is
key length, not O(1), while still claiming that it's independent
of database size.
- Fix trie_state_get_data() on a prefix key.
- Fix reported segfault on full-range alpha map.
-------------------------------------------------------------------
Mon Feb 19 11:29:35 UTC 2018 - jengelh@inai.de