utf8proc
annotate Changelog @ 14:d0bab6ca89a5
Version 1.1.6
- PostgreSQL 9.2 and 9.3 compatibility (lowercase 'c' language name)
- PostgreSQL 9.2 and 9.3 compatibility (lowercase 'c' language name)
author | jbe |
---|---|
date | Wed Nov 27 12:00:00 2013 +0100 (2013-11-27) |
parents | 2c7384f1fac1 |
children |
rev | line source |
---|---|
jbe@0 | 1 Changelog |
jbe@0 | 2 |
jbe@0 | 3 2006-06-02: |
jbe@0 | 4 - initial release of version 0.1 |
jbe@0 | 5 |
jbe@1 | 6 2006-06-05: |
jbe@7 | 7 - changed behaviour of PostgreSQL function to return NULL in case of |
jbe@7 | 8 invalid input, rather than raising an exceptional condition |
jbe@7 | 9 - improved efficiency of PostgreSQL function (no transformation to C string |
jbe@7 | 10 is done) |
jbe@0 | 11 |
jbe@1 | 12 2006-06-20: |
jbe@1 | 13 - added -fpic compiler flag in Makefile |
jbe@7 | 14 - fixed bug in the C code for the ruby library (usage of non-existent |
jbe@7 | 15 function) |
jbe@1 | 16 |
jbe@2 | 17 Release of version 0.2 |
jbe@2 | 18 |
jbe@9 | 19 |
jbe@2 | 20 2006-07-18: |
jbe@2 | 21 - changed normalization from NFC to NFKC for postgresql unifold function |
jbe@2 | 22 |
jbe@2 | 23 2006-08-04: |
jbe@2 | 24 - added support to mark the beginning of a grapheme cluster with 0xFF |
jbe@2 | 25 (option: CHARBOUND) |
jbe@7 | 26 - added the ruby method String#chars, which is returning an array of UTF-8 |
jbe@7 | 27 encoded grapheme clusters |
jbe@2 | 28 - added NLF2LF transformation in postgresql unifold function |
jbe@2 | 29 - added the DECOMPOSE option, if you neither use COMPOSE or DECOMPOSE, no |
jbe@2 | 30 normalization will be performed (different from previous versions) |
jbe@2 | 31 - using integer constants rather than C-strings for character properties |
jbe@7 | 32 - fixed (hopefully) a problem with the ruby library on Mac OS X, which |
jbe@7 | 33 occured when compiler optimization was switched on |
jbe@2 | 34 |
jbe@2 | 35 Release of version 0.3 |
jbe@2 | 36 |
jbe@9 | 37 |
jbe@3 | 38 2006-09-17: |
jbe@3 | 39 - added the LUMP option, which lumps certain characters together |
jbe@3 | 40 (see lump.txt) (also used for the PostgreSQL "unifold" function) |
jbe@3 | 41 - added the STRIPMARK option, which strips marking characters |
jbe@3 | 42 (or marks of composed characters) |
jbe@3 | 43 - deprecated ruby method String#char_ary in favour of String#utf8chars |
jbe@3 | 44 |
jbe@3 | 45 Release of version 1.0 |
jbe@3 | 46 |
jbe@9 | 47 |
jbe@5 | 48 2006-09-20: |
jbe@5 | 49 - included a gem file for the ruby version of the library |
jbe@5 | 50 |
jbe@5 | 51 Release of version 1.0.1 |
jbe@5 | 52 |
jbe@9 | 53 |
jbe@5 | 54 2006-09-21: |
jbe@5 | 55 - included a check in Integer#utf8, which raises an exception, if the given |
jbe@5 | 56 code-point is invalid because of being too high (this was missing yet) |
jbe@5 | 57 |
jbe@5 | 58 2006-12-26: |
jbe@5 | 59 - added support for PostgreSQL version 8.2 |
jbe@5 | 60 |
jbe@5 | 61 Release of version 1.0.2 |
jbe@6 | 62 |
jbe@9 | 63 |
jbe@6 | 64 2007-03-16: |
jbe@6 | 65 - Fixed a bug in the ruby library, which caused an error, when splitting an |
jbe@6 | 66 empty string at grapheme cluster boundaries (method String#utf8chars). |
jbe@6 | 67 |
jbe@6 | 68 Release of version 1.0.3 |
jbe@6 | 69 |
jbe@9 | 70 |
jbe@7 | 71 2007-06-25: |
jbe@7 | 72 - Added a new PostgreSQL function 'unistrip', which behaves like 'unifold', |
jbe@7 | 73 but also removes all character marks (e.g. accents). |
jbe@7 | 74 |
jbe@7 | 75 2007-07-22: |
jbe@7 | 76 - Changed license from BSD to MIT style. |
jbe@7 | 77 - Added a new function 'utf8proc_codepoint_valid' to the C library. |
jbe@7 | 78 - Changed compiler flags in Makefile from -g -O0 to -O2 |
jbe@7 | 79 - The ruby script, which was used to build the utf8proc_data.c file, is now |
jbe@7 | 80 included in the distribution. |
jbe@7 | 81 |
jbe@7 | 82 Release of version 1.1.1 |
jbe@7 | 83 |
jbe@9 | 84 |
jbe@8 | 85 2007-07-25: |
jbe@8 | 86 - Fixed a serious bug in the data file generator, which caused characters |
jbe@8 | 87 being treated incorrectly, when stripping default ignorable characters or |
jbe@8 | 88 calculating grapheme cluster boundaries. |
jbe@8 | 89 |
jbe@9 | 90 Release of version 1.1.2 |
jbe@9 | 91 |
jbe@9 | 92 |
jbe@9 | 93 2008-10-04: |
jbe@9 | 94 - Added a function utf8proc_version returning a string containing the version |
jbe@9 | 95 number of the library. |
jbe@9 | 96 - Included a target libutf8proc.dylib for MacOSX. |
jbe@9 | 97 |
jbe@9 | 98 2009-05-01: |
jbe@9 | 99 - PostgreSQL 8.3 compatibility (use of SET_VARSIZE macro) |
jbe@9 | 100 |
jbe@9 | 101 Release of version 1.1.3 |
jbe@9 | 102 |
jbe@10 | 103 |
jbe@10 | 104 2009-06-14: |
jbe@10 | 105 - replaced C++ style comments for compatibility reasons |
jbe@10 | 106 - added typecasts to suppress compiler warnings |
jbe@10 | 107 - removed redundant source files for ruby-gemfile generation |
jbe@10 | 108 |
jbe@10 | 109 2009-08-19: |
jbe@10 | 110 - Changed copyright notice for Public Software Group e. V. |
jbe@10 | 111 - Minor changes in the README file |
jbe@10 | 112 - Release of version 1.1.4 |
jbe@10 | 113 |
jbe@13 | 114 2009-08-20: |
jbe@13 | 115 - Use RSTRING_PTR() and RSTRING_LEN() instead of RSTRING()->ptr and |
jbe@13 | 116 RSTRING()->len for ruby1.9 compatibility (and #define them, if not |
jbe@13 | 117 existent) |
jbe@13 | 118 |
jbe@13 | 119 2009-10-02: |
jbe@13 | 120 - Patches for compatibility with Microsoft Visual Studio |
jbe@13 | 121 |
jbe@13 | 122 2009-10-08: |
jbe@13 | 123 - Fixes to make utf8proc usable in C++ programs |
jbe@13 | 124 |
jbe@13 | 125 2009-10-16: |
jbe@13 | 126 - Release of version 1.1.5 |
jbe@13 | 127 |
jbe@14 | 128 2013-11-27: |
jbe@14 | 129 - PostgreSQL 9.2 and 9.3 compatibility (lowercase 'c' language name) |
jbe@14 | 130 - Release of version 1.1.6 |
jbe@14 | 131 |