utf8proc
view Changelog @ 7:fcfd8c836c64
Version 1.1.1
- Added a new PostgreSQL function 'unistrip', which behaves like 'unifold', but also removes all character marks (e.g. accents).
- Changed license from BSD to MIT style.
- Added a new function 'utf8proc_codepoint_valid' to the C library.
- Changed compiler flags in Makefile from -g -O0 to -O2
- The ruby script, which was used to build the utf8proc_data.c file, is now included in the distribution.
- Added a new PostgreSQL function 'unistrip', which behaves like 'unifold', but also removes all character marks (e.g. accents).
- Changed license from BSD to MIT style.
- Added a new function 'utf8proc_codepoint_valid' to the C library.
- Changed compiler flags in Makefile from -g -O0 to -O2
- The ruby script, which was used to build the utf8proc_data.c file, is now included in the distribution.
| author | jbe | 
|---|---|
| date | Sun Jul 22 12:00:00 2007 +0200 (2007-07-22) | 
| parents | d04d3a9b486e | 
| children | 6921ee309940 | 
 line source
     1 Changelog
     3 2006-06-02:
     4 - initial release of version 0.1
     6 2006-06-05:
     7 - changed behaviour of PostgreSQL function to return NULL in case of
     8   invalid input, rather than raising an exceptional condition
     9 - improved efficiency of PostgreSQL function (no transformation to C string
    10   is done)
    12 2006-06-20:
    13 - added -fpic compiler flag in Makefile
    14 - fixed bug in the C code for the ruby library (usage of non-existent
    15   function)
    17 Release of version 0.2
    19 2006-07-18:
    20 - changed normalization from NFC to NFKC for postgresql unifold function
    22 2006-08-04:
    23 - added support to mark the beginning of a grapheme cluster with 0xFF
    24   (option: CHARBOUND)
    25 - added the ruby method String#chars, which is returning an array of UTF-8
    26   encoded grapheme clusters
    27 - added NLF2LF transformation in postgresql unifold function
    28 - added the DECOMPOSE option, if you neither use COMPOSE or DECOMPOSE, no
    29   normalization will be performed (different from previous versions)
    30 - using integer constants rather than C-strings for character properties
    31 - fixed (hopefully) a problem with the ruby library on Mac OS X, which
    32   occured when compiler optimization was switched on
    34 Release of version 0.3
    36 2006-09-17:
    37 - added the LUMP option, which lumps certain characters together
    38   (see lump.txt) (also used for the PostgreSQL "unifold" function)
    39 - added the STRIPMARK option, which strips marking characters
    40   (or marks of composed characters)
    41 - deprecated ruby method String#char_ary in favour of String#utf8chars
    43 Release of version 1.0
    45 2006-09-20:
    46 - included a gem file for the ruby version of the library
    48 Release of version 1.0.1
    50 2006-09-21:
    51 - included a check in Integer#utf8, which raises an exception, if the given
    52   code-point is invalid because of being too high (this was missing yet)
    54 2006-12-26:
    55 - added support for PostgreSQL version 8.2
    57 Release of version 1.0.2
    59 2007-03-16:
    60 - Fixed a bug in the ruby library, which caused an error, when splitting an
    61   empty string at grapheme cluster boundaries (method String#utf8chars).
    63 Release of version 1.0.3
    65 2007-06-25:
    66 - Added a new PostgreSQL function 'unistrip', which behaves like 'unifold',
    67   but also removes all character marks (e.g. accents).
    69 2007-07-22:
    70 - Changed license from BSD to MIT style.
    71 - Added a new function 'utf8proc_codepoint_valid' to the C library.
    72 - Changed compiler flags in Makefile from -g -O0 to -O2
    73 - The ruby script, which was used to build the utf8proc_data.c file, is now
    74   included in the distribution.
    76 Release of version 1.1.1
